Skip to content

Commit

Permalink
Reference issue #1477 from the unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fredizzimo authored and jackhumbert committed Jul 9, 2017
1 parent 41efcd6 commit b3af79e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/basic/test_macro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,11 @@ TEST_F(Macro, PlayASimpleMacro) {
.AT_TIME(100);
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_O)))
// BUG: The timer should not really have advanced 10 ms here
// See issue #1477
.AT_TIME(110);
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport()))
// BUG: The timer should not advance on both keydown and key-up
// See issue #1477
.AT_TIME(120);
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_R)))
.AT_TIME(130);
Expand Down

0 comments on commit b3af79e

Please sign in to comment.