From c30b03df14ed703fbaa506ea637577a99348491e Mon Sep 17 00:00:00 2001 From: Yuce Tekol Date: Fri, 4 Jan 2019 01:56:10 +0300 Subject: [PATCH] trivial --- test/pilosa.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pilosa.go b/test/pilosa.go index dd3915406..31e93bb1d 100644 --- a/test/pilosa.go +++ b/test/pilosa.go @@ -427,7 +427,7 @@ func MustDo(method, urlStr string, body string) *httpResponse { func CheckGroupBy(t *testing.T, expected, results []pilosa.GroupCount) { if len(results) != len(expected) { - t.Fatalf("number of groupings mismatch:\n got:%+v\nwant:%+v\n", results, expected) + t.Fatalf("number of groupings mismatch:\n got:%+v\nwant:%+v\n", results, expected) } for i, result := range results { if !reflect.DeepEqual(expected[i], result) {