Skip to content

Commit

Permalink
fix test_startup
Browse files Browse the repository at this point in the history
  • Loading branch information
DamKast committed Jun 26, 2024
1 parent 04a876f commit 85daab9
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions tests/application/test_startup.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,15 +228,10 @@ async def test_info(make_application, caplog):
assert app.state.network_info.channel == channel
assert app.state.network_info.channel_mask == channel_mask
assert app.state.network_info.network_key.seq == 1
assert app.state.network_info.stack_specific[
"parent_nwk"
] == parent_address
assert app.state.network_info.stack_specific[
"authenticated"
] == 1
assert app.state.network_info.stack_specific[
"coordinator_version"
] == coordinator_version
zboss_stack_specific = app.state.network_info.stack_specific["zboss"]
assert zboss_stack_specific["parent_nwk"] == parent_address
assert zboss_stack_specific["authenticated"] == 1
assert zboss_stack_specific["coordinator_version"] == coordinator_version

# Anything to make sure it's set
assert app._device.node_desc.maximum_outgoing_transfer_size == 82
Expand Down

0 comments on commit 85daab9

Please sign in to comment.