Skip to content

Commit

Permalink
Fix expected value in test (erigontech#8412)
Browse files Browse the repository at this point in the history
  • Loading branch information
somnathb1 authored Oct 9, 2023
1 parent 2a5c51d commit 4d97428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbo/jsonrpc/send_transaction_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func TestSendRawTransaction(t *testing.T) {
t.Log("Timeout waiting for txn from channel")
jsonTx, err := api.GetTransactionByHash(ctx, txHash)
require.NoError(err)
require.Equal(expectedValue+1, jsonTx.Value.Uint64())
require.Equal(expectedValue, jsonTx.Value.Uint64())
}

//send same tx second time and expect error
Expand Down

0 comments on commit 4d97428

Please sign in to comment.