File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments