From 8c8f6f4b0132e14f677038260dfe9a72266814b3 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Tue, 6 Aug 2019 15:09:05 -0700 Subject: [PATCH] mvcc: fix typo in test Signed-off-by: Gyuho Lee --- mvcc/kvstore_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvcc/kvstore_test.go b/mvcc/kvstore_test.go index 475475732..2bcf9936d 100644 --- a/mvcc/kvstore_test.go +++ b/mvcc/kvstore_test.go @@ -390,7 +390,7 @@ func TestStoreRestore(t *testing.T) { s.restore() if s.compactMainRev != 3 { - t.Errorf("compact rev = %d, want 5", s.compactMainRev) + t.Errorf("compact rev = %d, want 3", s.compactMainRev) } if s.currentRev != 5 { t.Errorf("current rev = %v, want 5", s.currentRev)