Skip to content

Commit 3e21940

Browse files
committed
Fix missing await in test
1 parent e6b84d5 commit 3e21940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_usb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1834,7 +1834,7 @@ async def load_callback(event: pw_api.NodeEvent, mac: str) -> None: # type: ign
18341834
await test_node.set_motion_daylight_mode(True)
18351835

18361836
with pytest.raises(pw_exceptions.NodeError):
1837-
test_node.set_motion_sensitivity_level(20)
1837+
await test_node.set_motion_sensitivity_level(20)
18381838

18391839
with pytest.raises(pw_exceptions.NodeError):
18401840
await test_node.set_motion_reset_timer(5)

0 commit comments

Comments
 (0)