diff --git a/c-programming/experiments/clock-malfunction-imitation.c b/c-programming/experiments/clock-malfunction-imitation.c index 59353a5..61eca74 100644 --- a/c-programming/experiments/clock-malfunction-imitation.c +++ b/c-programming/experiments/clock-malfunction-imitation.c @@ -169,19 +169,19 @@ void time_flow_test(time_t (*time_function)(time_t*)) { } int main(void) { - TEST_LABEL("clock_change_time") + TEST_LABEL("clock_change_time"); time_flow_test(&clock_change_time); - TEST_LABEL("clock_exponential_growth") + TEST_LABEL("clock_exponential_growth"); time_flow_test(&clock_exponential_growth); - TEST_LABEL("clock_hang") + TEST_LABEL("clock_hang"); time_flow_test(&clock_hang); - TEST_LABEL("clock_overflow") + TEST_LABEL("clock_overflow"); time_flow_test(&clock_overflow); - TEST_LABEL("clock_reverse") + TEST_LABEL("clock_reverse"); time_flow_test(&clock_reverse); return 0;