From 180cfcfb728b0f9d760eac64bce967a45214cd35 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 29 Apr 2019 15:30:20 -0400 Subject: [PATCH] fix chris45 tests --- tests/integration/test_chris45.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/test_chris45.py b/tests/integration/test_chris45.py index d51cdc0a2..6628d04fc 100644 --- a/tests/integration/test_chris45.py +++ b/tests/integration/test_chris45.py @@ -92,7 +92,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.9693545') + self.assertEqual(result, '8.9693455') # Amidst all this Chris receives a call from his friend Ramsey # who says that it is of utmost urgency that Chris transfer him @@ -108,7 +108,7 @@ class EpicAdventuresOfChris45(CommandTestCase): await self.generate(5) result = await self.daemon.jsonrpc_account_balance() # Chris' balance was correct - self.assertEqual(result, '7.9692305') + self.assertEqual(result, '7.9692215') # Ramsey too assured him that he had received the 1 LBC and thanks him result = await self.daemon.jsonrpc_account_balance(ramsey_account_id)