From 373ac793628f4b92a7e7a865cc32e6c2f561eb30 Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez Date: Mon, 16 Dec 2024 00:43:11 -0500 Subject: [PATCH] Update comment --- time_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/time_test.go b/time_test.go index c16d9ab..ca74ffa 100644 --- a/time_test.go +++ b/time_test.go @@ -38,9 +38,8 @@ func Test_StopTimeStampUpdater(t *testing.T) { // Capture the timestamp after stopping stoppedTime := Timestamp() - // Wait TO see if it updates + // Wait before checking the timestamp time.Sleep(5 * time.Second) - // It should not have changed since we've stopped the updater require.Equal(t, stoppedTime, Timestamp(), "timestamp should not change after stopping updater") }