Skip to content

Commit

Permalink
To fixup if #1391 is merged
Browse files Browse the repository at this point in the history
  • Loading branch information
YannLocatelli committed Jul 10, 2024
1 parent 71ab88c commit 050996a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/functional/tests/deep_sleep_rfid_kit/suite_rfid_kit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ suite suite_rfid_kit = [] {

when("I do nothing") = [&] {
then("I expect deep sleep TO NOT BE possible") = [] {
auto status = utils::sleep::system_deep_sleep_check();
auto status = tests::utils::sleep::system_deep_sleep_check();

expect(not status.test_check_ok);
};
Expand All @@ -44,7 +44,7 @@ suite suite_rfid_kit = [] {
rtos::ThisThread::sleep_for(500ms);

then("I expect deep sleep TO BE possible") = [] {
auto status = utils::sleep::system_deep_sleep_check();
auto status = tests::utils::sleep::system_deep_sleep_check();

expect(status.test_check_ok);
};
Expand All @@ -56,7 +56,7 @@ suite suite_rfid_kit = [] {
rtos::ThisThread::sleep_for(500ms);

then("I expect deep sleep TO NOT BE possible") = [] {
auto status = utils::sleep::system_deep_sleep_check();
auto status = tests::utils::sleep::system_deep_sleep_check();

expect(not status.test_check_ok);
};
Expand All @@ -68,7 +68,7 @@ suite suite_rfid_kit = [] {
rtos::ThisThread::sleep_for(500ms);

then("I expect deep sleep TO BE possible") = [] {
auto status = utils::sleep::system_deep_sleep_check();
auto status = tests::utils::sleep::system_deep_sleep_check();

expect(status.test_check_ok);
};
Expand All @@ -80,7 +80,7 @@ suite suite_rfid_kit = [] {
rtos::ThisThread::sleep_for(500ms);

then("I expect deep sleep TO NOT BE possible") = [] {
auto status = utils::sleep::system_deep_sleep_check();
auto status = tests::utils::sleep::system_deep_sleep_check();

expect(not status.test_check_ok);
};
Expand All @@ -106,7 +106,7 @@ suite suite_rfid_kit = [] {
rtos::ThisThread::sleep_for(500ms);

then("I expect deep sleep TO BE possible") = [] {
auto status = utils::sleep::system_deep_sleep_check();
auto status = tests::utils::sleep::system_deep_sleep_check();

expect(status.test_check_ok);
};
Expand All @@ -125,7 +125,7 @@ suite suite_rfid_kit = [] {
rtos::ThisThread::sleep_for(500ms);

then("I expect deep sleep TO NOT BE possible") = [] {
auto status = utils::sleep::system_deep_sleep_check();
auto status = tests::utils::sleep::system_deep_sleep_check();

expect(not status.test_check_ok);
};
Expand Down

0 comments on commit 050996a

Please sign in to comment.