Merge pull request #11538 from andyxning/fix_typo

mvcc: fix error log typo
release-3.5
Gyuho Lee 2020-01-17 13:10:11 -08:00 committed by GitHub
commit a592b808c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ func TestIndexTombstone(t *testing.T) {
_, _, _, err = ti.Get([]byte("foo"), 2)
if err != ErrRevisionNotFound {
t.Errorf("get error = %v, want nil", err)
t.Errorf("get error = %v, want ErrRevisionNotFound", err)
}
err = ti.Tombstone([]byte("foo"), revision{main: 3})
if err != ErrRevisionNotFound {