Skip to content

Commit c801f98

Browse files
committed
Fix clippy lint
1 parent a10b0d1 commit c801f98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/crypto-verify/tests/integration.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! });
1818
//! 4. Anywhere you see init/execute(deps.as_mut(), ...) you must replace it with init/execute(&mut deps, ...)
1919
//! 5. Anywhere you see query(deps.as_ref(), ...) you must replace it with query(&mut deps, ...)
20-
//! (Use cosmwasm_vm::testing::{init, execute, query}, instead of the contract variants).
20+
//! (Use cosmwasm_vm::testing::{init, execute, query}, instead of the contract variants).
2121
2222
use cosmwasm_std::{Binary, Response, Uint128};
2323
use cosmwasm_vm::testing::{

0 commit comments

Comments
 (0)