Skip to content

Commit

Permalink
fixup! test: update device tests [no changelog]
Browse files Browse the repository at this point in the history
  • Loading branch information
M1nd3r committed Mar 6, 2025
1 parent 1ee6537 commit 7bd29f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/device_tests/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def test_end_session(client: Client):
assert session.id is not None

# get_address will succeed
with session as session:
with session:
session.set_expected_responses([messages.Address])
get_test_address(session)

Expand All @@ -89,7 +89,7 @@ def test_end_session(client: Client):

session = client.get_session()
assert session.id is not None
with session as session:
with session:
session.set_expected_responses([messages.Address])
get_test_address(session)

Expand Down

0 comments on commit 7bd29f8

Please sign in to comment.