]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - tests/basic/test_macro.cpp
convert to unix line-endings [skip ci]
[qmk_firmware.git] / tests / basic / test_macro.cpp
index f1990bf6ff67a86298d9a7cabd50f6c727ba81c5..80676d515319cf0f3420243d394585a1d49c788d 100644 (file)
@@ -14,7 +14,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "test_common.h"
+#include "test_common.hpp"
 #include "time.h"
 
 using testing::InSequence;
@@ -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);