summary refs log tree commit diff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-12-12 08:02:15 -0800
committerGitHub <noreply@github.com>2022-12-12 17:02:15 +0100
commit598735a2b8a7c69e3c3d9c05e856736d506a2ade (patch)
treeda668571267685d8d779e0cfdeb655791ed34b4f
parentcbabc8dbe6a8476d3082e8bc649d330f87e7b904 (diff)
Format code according to conventions (#19305)
-rw-r--r--tests/tap_hold_configurations/quick_tap/test_quick_tap.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/tap_hold_configurations/quick_tap/test_quick_tap.cpp b/tests/tap_hold_configurations/quick_tap/test_quick_tap.cpp
index be43f8e6c4..e2f8c51340 100644
--- a/tests/tap_hold_configurations/quick_tap/test_quick_tap.cpp
+++ b/tests/tap_hold_configurations/quick_tap/test_quick_tap.cpp
@@ -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});
 
@@ -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});
 
@@ -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;