From 5faef4df8b7a6b09a2f55f474f79cda973670986 Mon Sep 17 00:00:00 2001 From: Vladimir Avdeev Date: Thu, 3 Nov 2022 11:41:35 +0300 Subject: [PATCH] Add missed shell parameter in verify_list_storage_group() Signed-off-by: Vladimir Avdeev --- .../acl/storage_group/test_storagegroup.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pytest_tests/testsuites/acl/storage_group/test_storagegroup.py b/pytest_tests/testsuites/acl/storage_group/test_storagegroup.py index dc275b1..6808aa4 100644 --- a/pytest_tests/testsuites/acl/storage_group/test_storagegroup.py +++ b/pytest_tests/testsuites/acl/storage_group/test_storagegroup.py @@ -79,10 +79,8 @@ class TestStorageGroup: oid = put_object(self.main_wallet, file_path, cid, shell=client_shell) objects = [oid] storage_group = put_storagegroup( - shell=client_shell, - wallet=self.main_wallet, - cid=cid, - objects=objects) + shell=client_shell, wallet=self.main_wallet, cid=cid, objects=objects + ) self.expect_success_for_storagegroup_operations( shell=client_shell, @@ -328,7 +326,11 @@ class TestStorageGroup: with pytest.raises(Exception, match=OBJECT_ACCESS_DENIED): put_storagegroup(shell, IR_WALLET_PATH, cid, obj_list, wallet_config=IR_WALLET_CONFIG) verify_list_storage_group( - IR_WALLET_PATH, cid, storage_group, wallet_config=IR_WALLET_CONFIG + shell=shell, + wallet=IR_WALLET_PATH, + cid=cid, + gid=storage_group, + wallet_config=IR_WALLET_CONFIG, ) verify_get_storage_group( shell=shell,