Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
contracts Fix store-call test path (#14028)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgherveou authored and gpestana committed May 4, 2023
1 parent db806ea commit 5c320d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/contracts/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3585,7 +3585,7 @@ fn storage_deposit_works() {
#[test]
fn storage_deposit_callee_works() {
let (wasm_caller, _code_hash_caller) = compile_module::<Test>("call").unwrap();
let (wasm_callee, _code_hash_callee) = compile_module::<Test>("store").unwrap();
let (wasm_callee, _code_hash_callee) = compile_module::<Test>("store_call").unwrap();
const ED: u64 = 200;
ExtBuilder::default().existential_deposit(ED).build().execute_with(|| {
let _ = Balances::deposit_creating(&ALICE, 1_000_000);
Expand Down

0 comments on commit 5c320d3

Please sign in to comment.