Skip to content

Commit

Permalink
Fixing regeneration and new_mnemonic test case stalling
Browse files Browse the repository at this point in the history
  • Loading branch information
valefar-on-discord committed Apr 28, 2024
1 parent a7a3294 commit 93b31ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_cli/test_new_mnemonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def mock_get_mnemonic(language, words_path, entropy=None) -> str:
data = '\n'.join(inputs)
arguments = [
'new-mnemonic',
'--eth1_withdrawal_address', '',
'--folder', my_folder_path,
'--eth1_withdrawal_address=""',
]
result = runner.invoke(cli, arguments, input=data)
assert result.exit_code == 0
Expand Down
4 changes: 2 additions & 2 deletions tests/test_cli/test_regeneration.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def mock_get_mnemonic(language, words_path, entropy=None) -> str:
data = '\n'.join(inputs)
arguments = [
'new-mnemonic',
'--eth1_withdrawal_address', '',
'--folder', folder_path_1,
'--eth1_withdrawal_address=""',
]
result = runner.invoke(cli, arguments, input=data)
assert result.exit_code == 0
Expand Down Expand Up @@ -67,8 +67,8 @@ def mock_get_mnemonic(language, words_path, entropy=None) -> str:
data = '\n'.join(inputs)
arguments = [
'existing-mnemonic',
'--eth1_withdrawal_address', '',
'--folder', folder_path_2,
'--eth1_withdrawal_address=""',
]
result = runner.invoke(cli, arguments, input=data)

Expand Down

0 comments on commit 93b31ef

Please sign in to comment.