From 2323d4f61437001226f54bee5f6c480f16fd8d93 Mon Sep 17 00:00:00 2001 From: tnv1 Date: Wed, 24 Jan 2024 11:41:08 +0700 Subject: [PATCH] Fix query not found host zone config. --- tests/interchaintest/host_zone_proposal_test.go | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tests/interchaintest/host_zone_proposal_test.go b/tests/interchaintest/host_zone_proposal_test.go index c8ce768c..9d641ef0 100644 --- a/tests/interchaintest/host_zone_proposal_test.go +++ b/tests/interchaintest/host_zone_proposal_test.go @@ -80,12 +80,6 @@ func TestHostZoneProposal(t *testing.T) { require.NoError(t, err, "proposal status did not change to passed in expected number of blocks") fmt.Printf("response: %s\n", response) - config, err = feeabsCli.QueryHostZoneConfigWithDenom(feeabs, ctx, "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9") - require.NoError(t, err) - require.Equal(t, config, &feeabsCli.HostChainFeeAbsConfigResponse{HostChainConfig: feeabsCli.HostChainFeeAbsConfig{ - IbcDenom: "", - OsmosisPoolTokenDenomIn: "", - PoolId: "", - Frozen: false, - }}) + _, err = feeabsCli.QueryHostZoneConfigWithDenom(feeabs, ctx, "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9") + require.Error(t, err) // not found }