Skip to content

Commit

Permalink
tests: set communication timeout in kmd.init_wallet_handle (#6021)
Browse files Browse the repository at this point in the history
  • Loading branch information
algorandskiy authored Jun 7, 2024
1 parent abf4c8d commit 052dff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/scripts/e2e_subs/goal/goal.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ def open_wallet(self, name):
wallet = w

assert wallet, f"No wallet named '{name}'"
self.handle = self.kmd.init_wallet_handle(wallet["id"], "")
keys = self.kmd.list_keys(self.handle)
self.handle = self.kmd.init_wallet_handle(wallet["id"], "", timeout=120)
keys = self.kmd.list_keys(self.handle, timeout=120)
assert len(keys) == 1
self.account = keys[0]

Expand Down

0 comments on commit 052dff4

Please sign in to comment.