Skip to content

Commit 9330177

Browse files
committed
Power test bugfix
1 parent 6ea7e3a commit 9330177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kit_test/power_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def test_board(
188188
board.enable_fan(False)
189189

190190
# buzzer
191-
board.piezo.buzz(0.5, 1000)
191+
board.piezo.buzz(1000, 0.5)
192192
buzz_result = input("Did the buzzer buzz? [Y/n]") or 'y' # default to yes
193193
results['buzzer'] = buzz_result
194194
assert buzz_result.lower() == 'y', "Reported that the buzzer didn't buzz."

0 commit comments

Comments
 (0)