Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
goran-ethernal committed Jan 22, 2025
1 parent 0982c9a commit 83ab8f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/helpers/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 83ab8f6

Please sign in to comment.