Skip to content

Commit

Permalink
Update test_mqtt.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
PBrunot committed May 27, 2024
1 parent ea7c8de commit b17b3d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_mqtt/test_mqtt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ namespace fabomatic::tests

/// @brief Keep the ESP32 HW watchdog alive.
/// If code gets stuck this will cause an automatic reset.
void taskEspWatchdog()
void test_taskEspWatchdog()
{
static auto initialized = false;

Expand All @@ -280,7 +280,7 @@ namespace fabomatic::tests
if (!initialized)
{
initialized = esp32::setupWatchdog(conf::tasks::WATCHDOG_TIMEOUT);
TEST_ASSERT_TRUE_MESSAGE(initialized, "Watchdog initialization works")
TEST_ASSERT_TRUE_MESSAGE(initialized, "Watchdog initialization works");
}
if (initialized)
{
Expand Down

0 comments on commit b17b3d0

Please sign in to comment.