From f310ac001e4d5af4eecb5a13bafe7114a382be7f Mon Sep 17 00:00:00 2001 From: Emir Pasic Date: Sun, 7 Aug 2016 01:57:52 +0200 Subject: [PATCH] - fix comparator test --- 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 12849f8..fcdef29 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, -1}, + {11, 22, -11}, {0, 0, 0}, {1, 0, 1}, {0, 1, -1},