Skip to content

Commit

Permalink
fixing clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kakucodes committed Sep 18, 2024
1 parent 00a70bc commit 31bb91f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub fn add_channel_chain_happy_path() -> anyhow::Result<(), Error> {
querier: QuerierWrapper::new(&empty_mock_querier),
};

let channel_binary = query(readonly_deps.clone(), env, QueryMsg::AllChannelChains {})?;
let channel_binary = query(readonly_deps, env, QueryMsg::AllChannelChains {})?;
let channel: AllChannelChainsResponse = from_binary(&channel_binary)?;

assert_eq!(channel.channels_chains.len(), 1);
Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/contracts/wormchain-ibc-receiver/src/tests/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub mod integration_tests;
pub mod test_utils;
pub mod tests;

0 comments on commit 31bb91f

Please sign in to comment.