Skip to content

Commit

Permalink
Fix tests failing due to previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rhargreaves committed Jul 27, 2024
1 parent 98d507b commit 6eae798
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_midi_portamento.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,10 @@ static void test_midi_portamento_sets_portamento_time_to_maximum(UNUSED void** s
__real_midi_note_on(chan, MIDI_PITCH_A2, MAX_MIDI_VOLUME);
__real_midi_note_on(chan, MIDI_PITCH_C4, MAX_MIDI_VOLUME);

expect_synth_pitch(chan, 2, 0x43a);
expect_synth_pitch(chan, 2, 0x439);
midi_tick();

expect_synth_pitch(chan, 2, 0x43b);
expect_synth_pitch(chan, 2, 0x43a);
midi_tick();
}

Expand Down

0 comments on commit 6eae798

Please sign in to comment.