Skip to content

Commit

Permalink
drop from error message since it doesn't just refer to retryables
Browse files Browse the repository at this point in the history
  • Loading branch information
anodar committed Jul 24, 2023
1 parent 522eb88 commit ca690bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system_tests/retryable_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func retryableSetup(t *testing.T) (
messages, err := delayedBridge.LookupMessagesInRange(ctx, l1Receipt.BlockNumber, l1Receipt.BlockNumber, nil)
Require(t, err)
if len(messages) == 0 {
Fatal(t, "didn't find message for retryable submission")
Fatal(t, "didn't find message for submission")
}
var submissionTxs []*types.Transaction
msgTypes := map[uint8]bool{
Expand All @@ -82,7 +82,7 @@ func retryableSetup(t *testing.T) (
}
}
if len(submissionTxs) != 1 {
Fatal(t, "expected 1 tx from retryable submission, found", len(submissionTxs))
Fatal(t, "expected 1 tx from submission, found", len(submissionTxs))
}
return submissionTxs[0].Hash()
}
Expand Down

0 comments on commit ca690bf

Please sign in to comment.