Skip to content

Commit dc1979a

Browse files
Mel Wrajkan01
authored andcommitted
capitalizing class name
Hope this is alright.
1 parent 80a0b20 commit dc1979a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

TESTS/mbed_hal/watchdog_reset/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ void test_restart_reset()
191191
{
192192
watchdog_features_t features = hal_watchdog_get_platform_features();
193193
if (!features.disable_watchdog) {
194-
TEST_IGNORE_MESSAGE("Disabling watchdog not supported for this platform");
194+
TEST_IGNORE_MESSAGE("Disabling Watchdog not supported for this platform");
195195
return;
196196
}
197197

@@ -207,7 +207,7 @@ void test_restart_reset()
207207
TEST_ASSERT_EQUAL(WATCHDOG_STATUS_OK, hal_watchdog_init(&config));
208208
wait_ms(TIMEOUT_MS / 2UL);
209209
TEST_ASSERT_EQUAL(WATCHDOG_STATUS_OK, hal_watchdog_stop());
210-
// Check that stopping the watchdog prevents a device reset.
210+
// Check that stopping the Watchdog prevents a device reset.
211211
wait_ms(TIMEOUT_MS / 2UL + TIMEOUT_DELTA_MS);
212212

213213
if (send_reset_notification(&current_case, TIMEOUT_MS + TIMEOUT_DELTA_MS) == false) {
@@ -296,7 +296,7 @@ Case cases[] = {
296296
#endif
297297
#endif
298298
Case("Watchdog started again", case_setup, test_restart_reset),
299-
Case("Kicking the watchdog prevents reset", case_setup, test_kick_reset),
299+
Case("Kicking the Watchdog prevents reset", case_setup, test_kick_reset),
300300
};
301301

302302
Specification specification((utest::v1::test_setup_handler_t) testsuite_setup, cases);

0 commit comments

Comments
 (0)