Skip to content

Commit

Permalink
Merge remote-tracking branch 'stencil/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dfordivam committed Dec 17, 2024
2 parents 91cb594 + 0a8710f commit 967ddec
Show file tree
Hide file tree
Showing 13 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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 0 additions & 14 deletions ragger-tests/test_pubkey_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,3 @@ def check_result(result):
assert address.hex() == "56b19e720f3bfa8caaef806afdd5dfaffd0d6ec9476323a14d1638ad734b2ba5"

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('.'))), "sui")
# Use the app interface instead of raw interface
Expand Down

0 comments on commit 967ddec

Please sign in to comment.