aboutsummaryrefslogtreecommitdiff
path: root/tests/basic/test_macro.cpp
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-07-08 19:34:51 +0300
committerJack Humbert <jack.humb@gmail.com>2017-07-08 21:59:51 -0400
commitb3af79eaffcf272df7327d2e23cba8b60acea792 (patch)
treeae01bbf292266753613e668fd4a2971fad7100ef /tests/basic/test_macro.cpp
parent41efcd6d73ca08774e680daa39c42b0437133387 (diff)
downloadqmk_firmware-b3af79eaffcf272df7327d2e23cba8b60acea792.tar.gz
qmk_firmware-b3af79eaffcf272df7327d2e23cba8b60acea792.zip
Reference issue #1477 from the unit tests
Diffstat (limited to 'tests/basic/test_macro.cpp')
-rw-r--r--tests/basic/test_macro.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/basic/test_macro.cpp b/tests/basic/test_macro.cpp
index 56ee5ad3e..80676d515 100644
--- a/tests/basic/test_macro.cpp
+++ b/tests/basic/test_macro.cpp
@@ -69,9 +69,11 @@ TEST_F(Macro, PlayASimpleMacro) {
69 .AT_TIME(100); 69 .AT_TIME(100);
70 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_O))) 70 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_O)))
71 // BUG: The timer should not really have advanced 10 ms here 71 // BUG: The timer should not really have advanced 10 ms here
72 // See issue #1477
72 .AT_TIME(110); 73 .AT_TIME(110);
73 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())) 74 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport()))
74 // BUG: The timer should not advance on both keydown and key-up 75 // BUG: The timer should not advance on both keydown and key-up
76 // See issue #1477
75 .AT_TIME(120); 77 .AT_TIME(120);
76 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_R))) 78 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_R)))
77 .AT_TIME(130); 79 .AT_TIME(130);