Browse Source

Merge pull request #4028 from gyuho/storage_test_variable

storage: remove unnecessary test variable assignment
Xiang Li 10 years ago
parent
commit
c4732eb6e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      storage/kv_test.go

+ 1 - 1
storage/kv_test.go

@@ -281,7 +281,7 @@ func testKVPutMultipleTimes(t *testing.T, f putFunc) {
 		base := int64(i + 1)
 
 		rev := f(s, []byte("foo"), []byte("bar"))
-		if wrev := base; rev != wrev {
+		if rev != base {
 			t.Errorf("#%d: rev = %d, want %d", i, rev, base)
 		}