Skip to content

Commit

Permalink
Update suite_rfid_kit.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
YannLocatelli committed Jul 24, 2024
1 parent b0332ee commit c3c8695
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/functional/tests/deep_sleep_rfid_kit/suite_rfid_kit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ suite suite_rfid_kit = [] {

when("I wait") = [&] {
cardDetected = false;
rtos::ThisThread::sleep_for(3s);
rtos::ThisThread::sleep_for(1s);

then("I expect card TO BE detected") = [&cardDetected] { expect(cardDetected); };
};
Expand All @@ -114,7 +114,7 @@ suite suite_rfid_kit = [] {

when("I wait") = [&] {
cardDetected = false;
rtos::ThisThread::sleep_for(3s);
rtos::ThisThread::sleep_for(10s);

then("I expect card TO BE detected") = [&cardDetected] { expect(cardDetected); };
};
Expand All @@ -133,7 +133,7 @@ suite suite_rfid_kit = [] {

when("I wait") = [&] {
cardDetected = false;
rtos::ThisThread::sleep_for(3s);
rtos::ThisThread::sleep_for(1s);

then("I expect card TO BE detected") = [&cardDetected] { expect(cardDetected); };
};
Expand Down

0 comments on commit c3c8695

Please sign in to comment.