Browse Source

[CI] Format code according to conventions (#25820)

QMK Bot 8 months ago
parent
commit
c7e17538ee
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/combo/test_combos.c

+ 2 - 2
tests/combo/test_combos.c

@@ -6,8 +6,8 @@
 
 enum combos { modtest, osmshift, single_key };
 
-uint16_t const modtest_combo[]  = {KC_Y, KC_U, COMBO_END};
-uint16_t const osmshift_combo[] = {KC_Z, KC_X, COMBO_END};
+uint16_t const modtest_combo[]    = {KC_Y, KC_U, COMBO_END};
+uint16_t const osmshift_combo[]   = {KC_Z, KC_X, COMBO_END};
 uint16_t const single_key_combo[] = {KC_A, COMBO_END};
 
 // clang-format off