Skip to content

Commit 47b08e5

Browse files
committed
kvserver: rm unclassified engine from testContext
Epic: none Release note: none
1 parent bed86e7 commit 47b08e5

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pkg/kv/kvserver/replica_test.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ type testContext struct {
151151
repl *Replica
152152
rangeID roachpb.RangeID
153153
gossip *gossip.Gossip
154-
engine storage.Engine // TODO(sep-raft-log): remove this
155154
stateEng storage.Engine
156155
raftEng storage.Engine
157156
manualClock *timeutil.ManualTime
@@ -193,7 +192,6 @@ func (tc *testContext) StartWithStoreConfigAndVersion(
193192
tc.TB = t
194193
require.Nil(t, tc.gossip)
195194
require.Nil(t, tc.transport)
196-
require.Nil(t, tc.engine)
197195
require.Nil(t, tc.stateEng)
198196
require.Nil(t, tc.raftEng)
199197
require.Nil(t, tc.store)
@@ -226,9 +224,6 @@ func (tc *testContext) StartWithStoreConfigAndVersion(
226224
tc.rangeID = repl.RangeID
227225
tc.gossip = store.cfg.Gossip
228226
tc.transport = store.cfg.Transport
229-
// TODO(sep-raft-log): may need to update our various test harnesses to
230-
// support two engines, do metamorphic stuff, etc.
231-
tc.engine = store.TODOEngine()
232227
tc.stateEng = store.StateEngine()
233228
tc.raftEng = store.LogEngine()
234229
tc.store = store

0 commit comments

Comments
 (0)