Skip to content

Commit

Permalink
Fix test after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkushinDaniil committed Feb 7, 2025
1 parent 4dc2326 commit eabbcdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func TestNodeWithL1Verification(t *testing.T) {
EthNode: "ws://" + listener.Addr().String(),
DatabasePath: t.TempDir(),
DisableL1Verification: false,
}, "v0.1")
}, "v0.1", utils.NewLogLevel(utils.INFO))
require.NoError(t, err)
}

Expand Down Expand Up @@ -140,7 +140,7 @@ func TestNodeWithL1VerificationError(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
_, err := node.New(tt.cfg, "v0.1")
_, err := node.New(tt.cfg, "v0.1", utils.NewLogLevel(utils.INFO))
require.ErrorContains(t, err, tt.err)
})
}
Expand Down

0 comments on commit eabbcdc

Please sign in to comment.