@@ -101,7 +101,7 @@ void test_simple_reset()
101
101
TEST_ASSERT_MESSAGE (0 , " Dev-host communication error." );
102
102
return ;
103
103
}
104
- Watchdog& watchdog = Watchdog::get_instance ();
104
+ Watchdog & watchdog = Watchdog::get_instance ();
105
105
TEST_ASSERT_FALSE (watchdog.is_running ());
106
106
TEST_ASSERT_TRUE (watchdog.start (TIMEOUT_MS));
107
107
TEST_ASSERT_TRUE (watchdog.is_running ());
@@ -131,7 +131,7 @@ void test_sleep_reset()
131
131
TEST_ASSERT_MESSAGE (0 , " Dev-host communication error." );
132
132
return ;
133
133
}
134
- Watchdog& watchdog = Watchdog::get_instance ();
134
+ Watchdog & watchdog = Watchdog::get_instance ();
135
135
TEST_ASSERT_FALSE (watchdog.is_running ());
136
136
TEST_ASSERT_TRUE (watchdog.start (TIMEOUT_MS));
137
137
TEST_ASSERT_TRUE (watchdog.is_running ());
@@ -168,7 +168,7 @@ void test_deepsleep_reset()
168
168
TEST_ASSERT_MESSAGE (0 , " Dev-host communication error." );
169
169
return ;
170
170
}
171
- Watchdog& watchdog = Watchdog::get_instance ();
171
+ Watchdog & watchdog = Watchdog::get_instance ();
172
172
TEST_ASSERT_FALSE (watchdog.is_running ());
173
173
TEST_ASSERT_TRUE (watchdog.start (TIMEOUT_MS));
174
174
TEST_ASSERT_TRUE (watchdog.is_running ());
@@ -204,7 +204,7 @@ void test_restart_reset()
204
204
}
205
205
206
206
// Phase 1. -- run the test code.
207
- Watchdog& watchdog = Watchdog::get_instance ();
207
+ Watchdog & watchdog = Watchdog::get_instance ();
208
208
TEST_ASSERT_FALSE (watchdog.is_running ());
209
209
TEST_ASSERT_TRUE (watchdog.start (TIMEOUT_MS));
210
210
TEST_ASSERT_TRUE (watchdog.is_running ());
@@ -241,7 +241,7 @@ void test_kick_reset()
241
241
}
242
242
243
243
// Phase 1. -- run the test code.
244
- Watchdog& watchdog = Watchdog::get_instance ();
244
+ Watchdog & watchdog = Watchdog::get_instance ();
245
245
TEST_ASSERT_FALSE (watchdog.is_running ());
246
246
TEST_ASSERT_TRUE (watchdog.start (TIMEOUT_MS));
247
247
TEST_ASSERT_TRUE (watchdog.is_running ());
0 commit comments