From 13c201d768c4409d16fcf8b2af3e7f704eff8435 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Fri, 27 Jul 2018 11:05:23 -0500 Subject: [PATCH] remove errant spew.Dump() --- executor_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/executor_test.go b/executor_test.go index 05c99bfd1..1bcb17524 100644 --- a/executor_test.go +++ b/executor_test.go @@ -512,12 +512,6 @@ func TestExecutor_Execute_SetRowAttrs(t *testing.T) { t.Fatal(err) } - result, err := c[0].API.Query(context.Background(), &pilosa.QueryRequest{Index: "i", Query: `Row(kf="row10")`}) - if err != nil { - t.Fatal(err) - } - spew.Dump(result) - if result, err := c[0].API.Query(context.Background(), &pilosa.QueryRequest{Index: "i", Query: `Row(kf="row10")`}); err != nil { t.Fatal(err) } else if attrs := result.Results[0].(*pilosa.Row).Attrs; !reflect.DeepEqual(attrs, map[string]interface{}{"foo": "bar", "baz": int64(123), "bat": true}) {