Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
marijanp committed May 8, 2024
1 parent 9454305 commit 589941e
Show file tree
Hide file tree
Showing 2 changed files with 184 additions and 175 deletions.
8 changes: 4 additions & 4 deletions demo-contract-tests/tests/test_fixture/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ impl TestContext {
let session_args = runtime_args! {};
let install_contract_request = ExecuteRequestBuilder::standard(
admin,
&*PATH_TO_WASM_BINARIES
PATH_TO_WASM_BINARIES
.join("demo-contract-optimized.wasm")
.to_str()
.expect("Failed to parse path as str"),
Expand Down Expand Up @@ -142,7 +142,7 @@ impl TestContext {
};
let session_request = ExecuteRequestBuilder::standard(
user,
&*PATH_TO_WASM_BINARIES
PATH_TO_WASM_BINARIES
.join("deposit-session-optimized.wasm")
.to_str()
.expect("Failed to parse path as str"),
Expand All @@ -165,7 +165,7 @@ impl TestContext {
};
let session_request = ExecuteRequestBuilder::standard(
msg_sender,
&*PATH_TO_WASM_BINARIES
PATH_TO_WASM_BINARIES
.join("malicious-session-optimized.wasm")
.to_str()
.expect("Failed to parse path as str"),
Expand All @@ -190,7 +190,7 @@ impl TestContext {
};
let session_request = ExecuteRequestBuilder::standard(
msg_sender,
&*PATH_TO_WASM_BINARIES
PATH_TO_WASM_BINARIES
.join("malicious-reader-optimized.wasm")
.to_str()
.expect("Failed to parse path as str"),
Expand Down
Loading

0 comments on commit 589941e

Please sign in to comment.