storage: remove unnecessary test variable assignment

There is no need to assign a separate variable since 'base' is already defined
as a local variable within the loop.
release-2.3
Gyu-Ho Lee 2015-12-20 14:23:27 -08:00
parent 98c1745278
commit 2377ef870a
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}