Skip to content

Commit

Permalink
Fix chain-id test
Browse files Browse the repository at this point in the history
  • Loading branch information
adairrr committed May 30, 2024
1 parent e77c9ed commit 082950d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/interchain-gov/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl<Env: CwEnv> TestEnv<Env> {
publisher.publish_adapter::<InterchainGovInstantiateMsg, InterchainGovInterface<_>>(
InterchainGovInstantiateMsg {
accept_proposal_from_gov: Members {
members: vec![ChainName::from_str(A_CHAIN_ID).unwrap(), ChainName::from_str(B_CHAIN_ID).unwrap()],
members: vec![ChainName::from_chain_id(A_CHAIN_ID), ChainName::from_chain_id(B_CHAIN_ID)],
},
},
)?;
Expand Down

0 comments on commit 082950d

Please sign in to comment.