Skip to content

Commit

Permalink
Fix error message in IBC packet dispatch test to reflect correct chan…
Browse files Browse the repository at this point in the history
…nel not found scenario
  • Loading branch information
faddat committed Jan 9, 2025
1 parent 3286d4f commit a43089f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func TestIBCPacketDispatch(t *testing.T) {
var ack2 AcknowledgeDispatch
err = json.Unmarshal(prResponse2.Acknowledgement, &ack2)
require.NoError(t, err)
require.Equal(t, "invalid packet: cosmwasm_std::addresses::Addr not found", ack2.Err)
require.Equal(t, "invalid packet: account no-such-channel not found", ack2.Err)

// check for the expected custom event
expected_events := []types.Event{{
Expand Down

0 comments on commit a43089f

Please # to comment.