Skip to content

Commit

Permalink
accounts/abi/bind: fix typo (ethereum#28630)
Browse files Browse the repository at this point in the history
  • Loading branch information
BorkBorked authored and Dergarcon committed Jan 31, 2024
1 parent f7b5ed3 commit 1876fe1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions accounts/abi/bind/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ func TestWaitDeployedCornerCases(t *testing.T) {
defer cancel()
backend.SendTransaction(ctx, tx)
backend.Commit()
notContentCreation := errors.New("tx is not contract creation")
if _, err := bind.WaitDeployed(ctx, backend, tx); err.Error() != notContentCreation.Error() {
t.Errorf("error mismatch: want %q, got %q, ", notContentCreation, err)
notContractCreation := errors.New("tx is not contract creation")
if _, err := bind.WaitDeployed(ctx, backend, tx); err.Error() != notContractCreation.Error() {
t.Errorf("error mismatch: want %q, got %q, ", notContractCreation, err)
}

// Create a transaction that is not mined.
Expand Down

0 comments on commit 1876fe1

Please sign in to comment.