Skip to content

Commit

Permalink
Fix to accomodate changes from SeedSigner#563
Browse files Browse the repository at this point in the history
  • Loading branch information
kdmukai committed Jul 14, 2024
1 parent 134476f commit 6d114f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_flows_seed.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def test_with_mnemonic(mnemonic: list[str], custom_extension: str = None, expect
if custom_extension:
sequence += [
FlowStep(seed_views.SeedFinalizeView, screen_return_value=1), # The passphrase / custom extension button is dynamic so there's no constant to refer to here
FlowStep(seed_views.SeedAddPassphraseView, screen_return_value=custom_extension),
FlowStep(seed_views.SeedAddPassphraseView, screen_return_value=dict(passphrase=custom_extension)), # This is a one-off oddity where the Screen returns dict instead of int | str
FlowStep(seed_views.SeedReviewPassphraseView, button_data_selection=seed_views.SeedReviewPassphraseView.DONE),
FlowStep(seed_views.SeedOptionsView),
]
Expand Down

0 comments on commit 6d114f7

Please sign in to comment.