diff --git a/test/helpers/e2e.go b/test/helpers/e2e.go index ebedfc12..d8c32546 100644 --- a/test/helpers/e2e.go +++ b/test/helpers/e2e.go @@ -107,7 +107,7 @@ func L1Setup(t *testing.T) *L1Environment { dbPathReorgDetectorL1 := path.Join(t.TempDir(), "ReorgDetectorL1.sqlite") rdL1, err := reorgdetector.New(l1Client.Client(), reorgdetector.Config{ DBPath: dbPathReorgDetectorL1, - CheckReorgsInterval: cfgTypes.Duration{Duration: time.Millisecond * 100}, + CheckReorgsInterval: cfgTypes.Duration{Duration: time.Millisecond * 100}, //nolint:mnd }) require.NoError(t, err) go rdL1.Start(ctx) //nolint:errcheck @@ -184,7 +184,7 @@ func L2Setup(t *testing.T) *L2Environment { dbPathReorgL2 := path.Join(t.TempDir(), "ReorgDetectorL2.sqlite") rdL2, err := reorgdetector.New(l2Client.Client(), reorgdetector.Config{ DBPath: dbPathReorgL2, - CheckReorgsInterval: cfgTypes.Duration{Duration: time.Millisecond * 100}}) + CheckReorgsInterval: cfgTypes.Duration{Duration: time.Millisecond * 100}}) //nolint:mnd require.NoError(t, err) go rdL2.Start(ctx) //nolint:errcheck