integration: fix govet error in Go tip

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee 2018-02-02 14:33:42 -08:00
parent 6a265731e1
commit a696343a0f

View File

@ -91,7 +91,7 @@ func TestMetricDbSizeDefrag(t *testing.T) {
}
// Put to move PendingPages to FreePages
if _, err := kvc.Put(context.TODO(), putreq); err != nil {
if _, err = kvc.Put(context.TODO(), putreq); err != nil {
t.Fatal(err)
}
time.Sleep(500 * time.Millisecond)