From 9b85b8749fee487f04989cb868572ec296129e64 Mon Sep 17 00:00:00 2001 From: Ilya Smyshlyaev Date: Fri, 16 Sep 2022 16:03:13 +0400 Subject: [PATCH] changed test case --- unique/findunique_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unique/findunique_test.go b/unique/findunique_test.go index 90a543c..8672f21 100644 --- a/unique/findunique_test.go +++ b/unique/findunique_test.go @@ -16,7 +16,7 @@ type testdata struct { var test = []testdata{ {[]int{9, 3, 9, 3, 9, 7, 9}, 7}, - {[]int{9, 3, 9, 3, 9, 7, 9}, 8}, + {[]int{9, 3, 9, 8, 9, 7, 9}, 3}, } func TestRotation(t *testing.T) {