From 0a96a47f6ba41b5509e30aafa8877ede555a0b5c Mon Sep 17 00:00:00 2001 From: Emir Pasic Date: Wed, 7 Sep 2016 05:19:07 +0200 Subject: [PATCH] - fix test for int comparator --- utils/comparator_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/comparator_test.go b/utils/comparator_test.go index fcdef29..12849f8 100644 --- a/utils/comparator_test.go +++ b/utils/comparator_test.go @@ -15,7 +15,7 @@ func TestIntComparator(t *testing.T) { {1, 1, 0}, {1, 2, -1}, {2, 1, 1}, - {11, 22, -11}, + {11, 22, -1}, {0, 0, 0}, {1, 0, 1}, {0, 1, -1},