From a4b9384d56a64160a0ccb070e86248a3e7845737 Mon Sep 17 00:00:00 2001 From: skosito Date: Thu, 26 Sep 2024 20:57:56 +0200 Subject: [PATCH] test fix --- x/crosschain/types/cctx_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/crosschain/types/cctx_test.go b/x/crosschain/types/cctx_test.go index 7166259945..0f2f84ac7b 100644 --- a/x/crosschain/types/cctx_test.go +++ b/x/crosschain/types/cctx_test.go @@ -188,7 +188,7 @@ func TestCrossChainTx_GetCurrentOutboundParam(t *testing.T) { cctx := sample.CrossChainTx(t, "foo") cctx.OutboundParams = []*types.OutboundParams{} - require.Equal(t, &types.OutboundParams{}, cctx.GetCurrentOutboundParam()) + require.Equal(t, &types.OutboundParams{CallOptions: &types.CallOptions{}}, cctx.GetCurrentOutboundParam()) cctx.OutboundParams = []*types.OutboundParams{sample.OutboundParams(r)} require.Equal(t, cctx.OutboundParams[0], cctx.GetCurrentOutboundParam())