From 57abad21811357fa388efededfe46048cdecf117 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Thu, 30 Aug 2018 15:06:10 -0400 Subject: [PATCH] removed unnecessary address subscribe call in integration tests --- tests/integration/test_transactions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration/test_transactions.py b/tests/integration/test_transactions.py index 207a29f6d..b9173b1c6 100644 --- a/tests/integration/test_transactions.py +++ b/tests/integration/test_transactions.py @@ -9,7 +9,6 @@ class BasicTransactionTests(IntegrationTestCase): async def test_sending_and_receiving(self): account1, account2 = self.account, self.wallet.generate_account(self.ledger) - yield self.ledger.update_account(account1) yield self.ledger.update_account(account2) self.assertEqual(await self.get_balance(account1), 0)