From 7cbe10ea9366419ed454cfebb389cfffb347dd5b Mon Sep 17 00:00:00 2001 From: disksing Date: Mon, 7 Mar 2022 11:27:20 +0800 Subject: [PATCH] integration: try not to skip tests when run with tikv (#445) Signed-off-by: disksing --- integration_tests/snapshot_fail_test.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/integration_tests/snapshot_fail_test.go b/integration_tests/snapshot_fail_test.go index e339d1e2..17ac9436 100644 --- a/integration_tests/snapshot_fail_test.go +++ b/integration_tests/snapshot_fail_test.go @@ -84,11 +84,6 @@ func (s *testSnapshotFailSuite) TearDownTest() { } func (s *testSnapshotFailSuite) TestBatchGetResponseKeyError() { - // Meaningless to test with tikv because it has a mock key error - if *withTiKV { - return - } - // Put two KV pairs txn, err := s.store.Begin() s.Require().Nil(err) @@ -112,11 +107,6 @@ func (s *testSnapshotFailSuite) TestBatchGetResponseKeyError() { } func (s *testSnapshotFailSuite) TestScanResponseKeyError() { - // Meaningless to test with tikv because it has a mock key error - if *withTiKV { - return - } - // Put two KV pairs txn, err := s.store.Begin() s.Require().Nil(err)