fix: unnecessary assignment to the blank identifier

This commit is contained in:
uzziah 2023-06-10 20:01:11 +08:00
parent 38fdcddc82
commit ba507e6bf8

View File

@ -125,7 +125,7 @@ func TestWriteDeleteCache_Set(t *testing.T) {
_, err = w.Get(tt.ctx, tt.key)
assert.Equal(t, ErrKeyNotExist, err)
vv, _ := mockDbStore[tt.key]
vv := mockDbStore[tt.key]
assert.Equal(t, tt.value, vv)
})
}