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) {