Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
agryaznov committed May 26, 2023
1 parent 1e658b1 commit e267dd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/call-runtime/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ mod runtime_call {
let receiver: AccountId = default_accounts::<DefaultEnvironment>().bob;

let contract_balance_before = client
.balance(contract_acc_id)
.balance(contract.account_id)
.await
.expect("Failed to get account balance");
let receiver_balance_before = client
Expand All @@ -188,7 +188,7 @@ mod runtime_call {

// then
let contract_balance_after = client
.balance(contract_acc_id)
.balance(contract.account_id)
.await
.expect("Failed to get account balance");
let receiver_balance_after = client
Expand Down

0 comments on commit e267dd1

Please sign in to comment.