Skip to content

Commit

Permalink
Format code according to conventions (qmk#19305)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot authored Dec 12, 2022
1 parent cbabc8d commit 598735a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/tap_hold_configurations/quick_tap/test_quick_tap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ TEST_F(QuickTap, tap_regular_key_while_mod_tap_key_is_held) {
TestDriver driver;
InSequence s;
auto mod_tap_key = KeymapKey(0, 1, 0, SFT_T(KC_P));
auto regular_key = KeymapKey(0, 2, 0, KC_A);
auto regular_key = KeymapKey(0, 2, 0, KC_A);

set_keymap({mod_tap_key, regular_key});

Expand Down Expand Up @@ -111,8 +111,8 @@ TEST_F(QuickTap, tap_regular_key_while_layer_tap_key_is_held) {
TestDriver driver;
InSequence s;
auto layer_tap_key = KeymapKey(0, 1, 0, LT(1, KC_P));
auto regular_key = KeymapKey(0, 2, 0, KC_A);
auto layer_key = KeymapKey(1, 2, 0, KC_B);
auto regular_key = KeymapKey(0, 2, 0, KC_A);
auto layer_key = KeymapKey(1, 2, 0, KC_B);

set_keymap({layer_tap_key, regular_key, layer_key});

Expand Down Expand Up @@ -216,7 +216,6 @@ TEST_F(QuickTap, tap_key_and_hold_again_before_quick_tap_term) {
testing::Mock::VerifyAndClearExpectations(&driver);
}


TEST_F(QuickTap, tap_key_and_tap_again_after_quick_tap_term) {
TestDriver driver;
InSequence s;
Expand Down

0 comments on commit 598735a

Please sign in to comment.