mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-10 05:59:44 +00:00
Reference issue #1477 from the unit tests
This commit is contained in:
parent
41efcd6d73
commit
b3af79eaff
1 changed files with 2 additions and 0 deletions
|
@ -69,9 +69,11 @@ TEST_F(Macro, PlayASimpleMacro) {
|
||||||
.AT_TIME(100);
|
.AT_TIME(100);
|
||||||
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_O)))
|
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_O)))
|
||||||
// BUG: The timer should not really have advanced 10 ms here
|
// BUG: The timer should not really have advanced 10 ms here
|
||||||
|
// See issue #1477
|
||||||
.AT_TIME(110);
|
.AT_TIME(110);
|
||||||
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport()))
|
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport()))
|
||||||
// BUG: The timer should not advance on both keydown and key-up
|
// BUG: The timer should not advance on both keydown and key-up
|
||||||
|
// See issue #1477
|
||||||
.AT_TIME(120);
|
.AT_TIME(120);
|
||||||
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_R)))
|
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_R)))
|
||||||
.AT_TIME(130);
|
.AT_TIME(130);
|
||||||
|
|
Loading…
Reference in a new issue