Merge pull request #9273 from gyuho/aaa

integration: fix govet error in Go tip
This commit is contained in:
Xiang Li 2018-02-05 12:48:57 -08:00 committed by GitHub
commit 50d91036a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)