server: Fix broken code during merge

This commit is contained in:
Marek Siarkowicz
2022-06-09 13:34:33 +02:00
parent 5a7df03592
commit 72a84ddbcf

View File

@@ -181,7 +181,7 @@ func TestPeriodicSkipRevNotChange(t *testing.T) {
fc := clockwork.NewFakeClock()
rg := &fakeRevGetter{testutil.NewRecorderStreamWithWaitTimout(10 * time.Millisecond), 0}
compactable := &fakeCompactable{testutil.NewRecorderStreamWithWaitTimout(10 * time.Millisecond)}
tb := newPeriodic(zap.NewExample(), fc, retentionDuration, rg, compactable)
tb := newPeriodic(zaptest.NewLogger(t), fc, retentionDuration, rg, compactable)
tb.Run()
defer tb.Stop()