From d32697f611da44eed91e1312a2beefc65e35a9c5 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Thu, 17 Jan 2019 18:09:54 -0300 Subject: [PATCH] adjust assertions for fee changes --- tests/integration/wallet/test_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/wallet/test_commands.py b/tests/integration/wallet/test_commands.py index 1e862b840..f2a36cdf1 100644 --- a/tests/integration/wallet/test_commands.py +++ b/tests/integration/wallet/test_commands.py @@ -247,7 +247,7 @@ class EpicAdventuresOfChris45(CommandTestCase): # After abandoning he just waits for his LBCs to be returned to his account await self.generate(5) result = await self.daemon.jsonrpc_account_balance() - self.assertEqual(result, '8.9693585') + self.assertEqual(result, '8.969363') # Amidst all this Chris receives a call from his friend Ramsey # who says that it is of utmost urgency that Chris transfer him @@ -264,7 +264,7 @@ class EpicAdventuresOfChris45(CommandTestCase): await self.generate(5) result = await self.daemon.jsonrpc_account_balance() # Chris' balance was correct - self.assertEqual(result, '7.9692345') + self.assertEqual(result, '7.969239') # Ramsey too assured him that he had received the 1 LBC and thanks him result = await self.daemon.jsonrpc_account_balance(ramsey_account_id)