Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
malcx95 committed Aug 5, 2024
1 parent a7b5345 commit 720925e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions common/custom_keycodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const uint16_t CONTROL_BASE_CODE = 0xD000;
const uint16_t LAYER_HOLD_1 = (130 | LAYER_HOLD_MODIFIER);
const uint16_t LAYER_HOLD_2 = (131 | LAYER_HOLD_MODIFIER);

const uint16_t LAYER_TOGGLE_1 = (132 | LAYER_TOGGLE_MODIFIER);
const uint16_t LAYER_TOGGLE_2 = (133 | LAYER_TOGGLE_MODIFIER);
const uint16_t LAYER_TOGGLE_1 = (133 | LAYER_TOGGLE_MODIFIER);
const uint16_t LAYER_TOGGLE_2 = (134 | LAYER_TOGGLE_MODIFIER);

const uint16_t MOUSE_LEFT_CLICK = (116 | MOUSE_BASE_CODE);
const uint16_t MOUSE_RIGHT_CLICK = (117 | MOUSE_BASE_CODE);
Expand Down
2 changes: 1 addition & 1 deletion core/keyboard/test/test_keymap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ TEST_CASE("Test translate scan result", "[!shouldfail][KeyMap]")
const uint16_t data[]
{
7, // num keys
32729, // checksum
32730, // checksum

0, // layer 0
0, // row 0
Expand Down

0 comments on commit 720925e

Please sign in to comment.