From 3805ff4a0cdbf31e69fc39541dbf2e104f1e02e4 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 2 Jun 2021 10:48:26 -0400 Subject: [PATCH] fix purchase test --- tests/integration/blockchain/test_purchase_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/blockchain/test_purchase_command.py b/tests/integration/blockchain/test_purchase_command.py index 329873531..64e99a7ac 100644 --- a/tests/integration/blockchain/test_purchase_command.py +++ b/tests/integration/blockchain/test_purchase_command.py @@ -60,7 +60,7 @@ class PurchaseCommandTests(CommandTestCase): self.assertEqual( await self.account.get_balance(), buyer_balance - (purchase.input_sum-purchase.outputs[2].amount)) self.assertEqual( - await self.blockchain.get_balance(), + str(float(await self.blockchain.get_balance())), dewies_to_lbc(merchant_balance + purchase_txo.amount) )