소스 검색

Reference issue #1477 from the unit tests

Fred Sundvik 8 년 전
부모
커밋
b3af79eaff
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      tests/basic/test_macro.cpp

+ 2 - 0
tests/basic/test_macro.cpp

@@ -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);