From 0ba06cace34d495ac74e0e7e51724693ac4cac1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20G=C3=BCnther?= Date: Sun, 5 Dec 2021 00:27:31 +0100 Subject: [PATCH] day02: Fix test number --- day02/day02_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day02/day02_test.go b/day02/day02_test.go index 3528e6c..ea6abad 100644 --- a/day02/day02_test.go +++ b/day02/day02_test.go @@ -20,6 +20,6 @@ func Test2(t *testing.T) { } if res != 900 { - t.Errorf("wrong result, expected %d, got %d", 150, res) + t.Errorf("wrong result, expected %d, got %d", 900, res) } } -- 2.44.0