Skip to content

Commit

Permalink
fix: uses arbnode.BlockHashMismatchLogMsg instead of block_hash_mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoximenes committed May 20, 2024
1 parent faa405c commit 7f8d471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system_tests/seqfeed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ func TestSequencerFeed(t *testing.T) {
t.Fatal("Unexpected balance:", l2balance)
}

if logHandler.WasLogged("block_hash_mismatch") {
t.Fatal("block_hash_mismatch was logged unexpectedly")
if logHandler.WasLogged(arbnode.BlockHashMismatchLogMsg) {
t.Fatal("BlockHashMismatchLogMsg was logged unexpectedly")
}
}

Expand Down

0 comments on commit 7f8d471

Please sign in to comment.