Minor tidy

This commit is contained in:
Ed
2024-04-26 16:12:07 +01:00
parent 19a18c2db5
commit 8627ef9744
4 changed files with 13 additions and 12 deletions

View File

@@ -27,11 +27,6 @@ def test_tx(capfd, config, build_midi):
[0x90, 60, 81], # Note on
[0x80, 60, 81]] # Note off
# midi_commands = [
# [0x90, 60, 81], # Note on
# [0x80, 60, 81]] # Note off
# midi_command_expected = midi_commands[1:] # should skip invalid first message
# Make a 1D list from the 2D list
midi_command_expected = [[item for row in midi_commands for item in row]]