From 31effc9d8ec568470271b7449b5343499aef6276 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sun, 22 Dec 2024 22:00:38 +0000 Subject: [PATCH] fix test message --- day-22/internal/randomiser/randomiser_internal_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day-22/internal/randomiser/randomiser_internal_test.go b/day-22/internal/randomiser/randomiser_internal_test.go index 6690237..8b10f55 100644 --- a/day-22/internal/randomiser/randomiser_internal_test.go +++ b/day-22/internal/randomiser/randomiser_internal_test.go @@ -6,7 +6,7 @@ func TestRandomiserMix(t *testing.T) { r := New(42) r.mix(15) if r.secret != 37 { - t.Errorf("r.secret: got = %d want = 3", r.secret) + t.Errorf("r.secret: got = %d want = 37", r.secret) } }