[#207] Fix containers fixtures
Signed-off-by: Andrey Berezin <a.berezin@yadro.com>
This commit is contained in:
parent
833878d1d9
commit
3387f88ea2
1 changed files with 4 additions and 8 deletions
|
@ -56,11 +56,8 @@ class TestFailoverServer(ClusterTestBase):
|
||||||
rule=placement_rule,
|
rule=placement_rule,
|
||||||
basic_acl=PUBLIC_ACL,
|
basic_acl=PUBLIC_ACL,
|
||||||
)
|
)
|
||||||
wallet = WalletInfo(path=default_wallet)
|
storage_cont_info = StorageContainerInfo(cont_id, default_wallet)
|
||||||
storage_cont_info = StorageContainerInfo(id=cont_id, wallet_file=wallet)
|
containers.append(StorageContainer(storage_cont_info, self.shell, self.cluster))
|
||||||
containers.append(
|
|
||||||
StorageContainer(storage_container_info=storage_cont_info, shell=self.shell, cluster=self.cluster)
|
|
||||||
)
|
|
||||||
|
|
||||||
return containers
|
return containers
|
||||||
|
|
||||||
|
@ -76,9 +73,8 @@ class TestFailoverServer(ClusterTestBase):
|
||||||
rule=placement_rule,
|
rule=placement_rule,
|
||||||
basic_acl=PUBLIC_ACL,
|
basic_acl=PUBLIC_ACL,
|
||||||
)
|
)
|
||||||
wallet = WalletInfo(path=default_wallet)
|
storage_cont_info = StorageContainerInfo(cont_id, default_wallet)
|
||||||
storage_cont_info = StorageContainerInfo(id=cont_id, wallet_file=wallet)
|
return StorageContainer(storage_cont_info, self.shell, self.cluster)
|
||||||
return StorageContainer(storage_container_info=storage_cont_info, shell=self.shell, cluster=self.cluster)
|
|
||||||
|
|
||||||
@reporter.step("Create object and delete after test")
|
@reporter.step("Create object and delete after test")
|
||||||
@pytest.fixture(scope="class")
|
@pytest.fixture(scope="class")
|
||||||
|
|
Loading…
Reference in a new issue