Skip to content

Commit

Permalink
Format code according to conventions (qmk#17096)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot authored and zykrah committed Jul 2, 2022
1 parent e13de26 commit 87c6fb9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/secure/test_secure.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ TEST_F(Secure, test_unlock_timeout) {
EXPECT_FALSE(secure_is_unlocked());
secure_unlock();
EXPECT_TRUE(secure_is_unlocked());
idle_for(SECURE_IDLE_TIMEOUT+1);
idle_for(SECURE_IDLE_TIMEOUT + 1);
EXPECT_FALSE(secure_is_unlocked());

testing::Mock::VerifyAndClearExpectations(&driver);
Expand Down Expand Up @@ -135,14 +135,13 @@ TEST_F(Secure, test_unlock_request_timeout) {
EXPECT_FALSE(secure_is_unlocked());
secure_request_unlock();
EXPECT_TRUE(secure_is_unlocking());
idle_for(SECURE_UNLOCK_TIMEOUT+1);
idle_for(SECURE_UNLOCK_TIMEOUT + 1);
EXPECT_FALSE(secure_is_unlocking());
EXPECT_FALSE(secure_is_unlocked());

testing::Mock::VerifyAndClearExpectations(&driver);
}


TEST_F(Secure, test_unlock_request_fail_mid) {
TestDriver driver;
auto key_e = KeymapKey(0, 0, 0, KC_E);
Expand Down

0 comments on commit 87c6fb9

Please sign in to comment.