diff --git a/tests/ragger/snapshots/stax/test_clone_thundercore/00004.png b/tests/ragger/snapshots/stax/test_clone_thundercore/00004.png index a21279c..048cd3a 100644 Binary files a/tests/ragger/snapshots/stax/test_clone_thundercore/00004.png and b/tests/ragger/snapshots/stax/test_clone_thundercore/00004.png differ diff --git a/tests/ragger/test_clone.py b/tests/ragger/test_clone.py index be1e4cb..4419227 100644 --- a/tests/ragger/test_clone.py +++ b/tests/ragger/test_clone.py @@ -4,6 +4,7 @@ from web3 import Web3 from ragger.backend import BackendInterface from ragger.firmware import Firmware from ragger.navigator import Navigator +from ragger.navigator.navigation_scenario import NavigateWithScenario from test_sign import common @@ -21,6 +22,7 @@ VALUE = 0.31415 def test_clone_thundercore(firmware: Firmware, backend: BackendInterface, navigator: Navigator, + scenario_navigator: NavigateWithScenario, default_screenshot_path: Path, test_name: str): tx_params: dict = { @@ -31,4 +33,4 @@ def test_clone_thundercore(firmware: Firmware, "value": Web3.to_wei(VALUE, "ether"), "chainId": 108 } - common(firmware, backend, navigator, default_screenshot_path, tx_params, test_name, BIP32_PATH) + common(firmware, backend, navigator, scenario_navigator, default_screenshot_path, tx_params, test_name, BIP32_PATH)