Skip to content

Commit 8beb6c7

Browse files
authored
tests: fix wallet creation for container tests (#1256)
2 parents cddb844 + 4a2cba4 commit 8beb6c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytest_tests/tests/container/test_container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def _create_multi_account_wallet(self, accounts: list[neo3_account.Account], pre
4646
for account in accounts:
4747
wallet.account_add(account)
4848
with open(wallet_path, "w") as out:
49-
json.dump(wallet.to_json(self.DEFAULT_PASSWORD), out)
49+
json.dump(wallet.to_json(self.neofs_env.default_password), out)
5050
return wallet_path
5151

5252
def _refill_gas(self, wallet_path: str, address: str, amount: str = "200.0"):

0 commit comments

Comments
 (0)