diff options
author | Stefan Kerkmann <karlk90@pm.me> | 2022-06-05 21:06:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-05 20:06:05 +0100 |
commit | 4c48760558808bb42c99934a0e2c330679d6c6cf (patch) | |
tree | 3b09b95dc6c4a71c94a9e0088120b41ea43ea903 /tests/tap_hold_configurations/default_mod_tap | |
parent | 95d20e6d8bb1ffaf3024af793daf789ee0b75727 (diff) | |
download | qmk_firmware-4c48760558808bb42c99934a0e2c330679d6c6cf.tar.gz qmk_firmware-4c48760558808bb42c99934a0e2c330679d6c6cf.zip |
Apply EXPECT_REPORT and EXPECT_EMPTY_REPORT (#17311)
...convenience macros to test cases that where missed during #17284
Diffstat (limited to 'tests/tap_hold_configurations/default_mod_tap')
-rw-r--r-- | tests/tap_hold_configurations/default_mod_tap/test_tap_hold.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tap_hold_configurations/default_mod_tap/test_tap_hold.cpp b/tests/tap_hold_configurations/default_mod_tap/test_tap_hold.cpp index ecb79c2560..687a4e0318 100644 --- a/tests/tap_hold_configurations/default_mod_tap/test_tap_hold.cpp +++ b/tests/tap_hold_configurations/default_mod_tap/test_tap_hold.cpp @@ -133,7 +133,7 @@ TEST_F(DefaultTapHold, tap_regular_key_while_layer_tap_key_is_held) { EXPECT_REPORT(driver, (KC_P)); EXPECT_REPORT(driver, (KC_P, KC_A)); EXPECT_REPORT(driver, (KC_P)); - EXPECT_CALL(driver, send_keyboard_mock(_)); + EXPECT_EMPTY_REPORT(driver); layer_tap_hold_key.release(); run_one_scan_loop(); testing::Mock::VerifyAndClearExpectations(&driver); |