Skip to content

Commit

Permalink
[65] Update expected output for "iput -r" usage in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Apr 21, 2024
1 parent fb8c9de commit 6ff76b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packaging/test_rule_engine_plugin_logical_quotas.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_put_collection(self):

# Test: No quota violations on put of a non-empty collection.
self.logical_quotas_set_maximum_size_in_bytes(sandbox, '100')
self.admin1.assert_icommand(['iput', '-rf', dir_path], 'STDOUT', ['pre-scan'])
self.admin1.assert_icommand(['iput', '-rf', dir_path])
expected_number_of_objects = 3
expected_size_in_bytes = 60
self.assert_quotas(sandbox, expected_number_of_objects, expected_size_in_bytes)
Expand Down Expand Up @@ -272,7 +272,7 @@ def test_copy_collection(self):
dir_path = os.path.join(self.admin1.local_session_dir, 'col.a')
file_size = 1
self.make_directory(dir_path, ['foo.txt'], file_size)
self.admin1.assert_icommand(['iput', '-r', dir_path], 'STDOUT', ['pre-scan'])
self.admin1.assert_icommand(['iput', '-r', dir_path])

# Monitor first collection.
col1 = os.path.join(self.admin1.session_collection, 'col.a')
Expand Down

0 comments on commit 6ff76b6

Please sign in to comment.