From cd50e3d1942920faabd85a3c4ee2d3073a6bee9e Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 12 Jul 2023 12:05:45 +0100 Subject: [PATCH] Correcting cut n paste error Body of test function test_negative_60_minutes_previous_hour copied to test_negative_hour_and_minute_roll_over. --- exercises/practice/clock/run_test.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/practice/clock/run_test.v b/exercises/practice/clock/run_test.v index 5e7515f..0c10ebe 100644 --- a/exercises/practice/clock/run_test.v +++ b/exercises/practice/clock/run_test.v @@ -91,8 +91,8 @@ fn test_negative_60_minutes_previous_hour() { } fn test_negative_hour_and_minute_roll_over() { - c := new_clock(2, -60) - assert c.string() == '01:00' + c := new_clock(-25, -160) + assert c.string() == '20:20' } fn test_negative_hour_and_minute_roll_over_continuously() {