diff --git a/integration-tests/tests/common/balances.rs b/integration-tests/tests/common/balances.rs
index 3de606739358c2cecc81aa7f4cda1b76f070d5f2..781abf549e229cb28f20a18c387e60e4ad80ed46 100644
--- a/integration-tests/tests/common/balances.rs
+++ b/integration-tests/tests/common/balances.rs
@@ -27,7 +27,7 @@ pub async fn set_balance(
     amount: u64,
 ) -> Result<()> {
     let _events = create_block_with_extrinsic(
-        &client,
+        client,
         api.tx()
             .sudo()
             .sudo(gdev_runtime::Call::Balances(
@@ -78,7 +78,7 @@ pub async fn transfer_all(
     let to = to.to_account_id();
 
     let _events = create_block_with_extrinsic(
-        &client,
+        client,
         api.tx()
             .balances()
             .transfer_all(to.clone().into(), false)