Skip to content

Commit

Permalink
Merge branch 'develop-sync' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dfordivam committed Dec 17, 2024
2 parents ecf4389 + a9ddfe2 commit 0a8710f
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 15 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14 changes: 0 additions & 14 deletions ragger-tests/test_pubkey_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,3 @@ def check_result(result):
assert public_key.hex() == "19e2fea57e82293b4fee8120d934f0c5a4907198f8df29e9a153cfd7d9383488"

run_apdu_and_nav_tasks_concurrently(apdu_task, nav_task, check_result)

# # In this test we check that the GET_PUBLIC_KEY in confirmation mode replies an error if the user refuses
# def test_get_public_key_confirm_refused(backend, scenario_navigator):
# client = Client(backend)
# path = "m/44'/535348'/0'"

# with pytest.raises(ExceptionRAPDU) as e:
# with client.get_public_key_with_confirmation(path=path):
# scenario_navigator.address_review_reject()

# # Assert that we have received a refusal
# assert e.value.status == Errors.SW_DENY
# assert len(e.value.data) == 0

2 changes: 1 addition & 1 deletion ragger-tests/test_version_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_version(backend):
raise FileNotFoundError("Cargo.toml not found")

with open(cargo_path, "rb") as f:
return tomli.load(f)
data = tomli.load(f)

version = (tuple(map(int, data['package']['version'].split('.'))), "alamgu example")
# Use the app interface instead of raw interface
Expand Down

0 comments on commit 0a8710f

Please sign in to comment.