From e267dd15730c3d19d5030fa440292f849acf9960 Mon Sep 17 00:00:00 2001 From: Alexander Gryaznov Date: Fri, 26 May 2023 17:57:00 +0300 Subject: [PATCH] fix test --- integration-tests/call-runtime/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/call-runtime/lib.rs b/integration-tests/call-runtime/lib.rs index 321fca06551..919a06f525b 100644 --- a/integration-tests/call-runtime/lib.rs +++ b/integration-tests/call-runtime/lib.rs @@ -167,7 +167,7 @@ mod runtime_call { let receiver: AccountId = default_accounts::().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 @@ -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