From 1f62f18154be9ffab31ce4b8d203bb8e1679e48b Mon Sep 17 00:00:00 2001 From: James Leong Date: Sat, 8 Feb 2020 14:17:02 -0800 Subject: Statistics view #323 Remove header and table column of 'Balance' in statistics view --- ihatemoney/tests/tests.py | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'ihatemoney/tests') diff --git a/ihatemoney/tests/tests.py b/ihatemoney/tests/tests.py index 876a153..0c99bca 100644 --- a/ihatemoney/tests/tests.py +++ b/ihatemoney/tests/tests.py @@ -933,29 +933,19 @@ class BudgetTestCase(IhatemoneyTestCase): self.assertIn( "alexis\n " + "20.00\n " - + "31.67\n " - + "-11.67\n", + + "31.67\n", response.data.decode("utf-8"), ) self.assertIn( - "fred\n " - + "20.00\n " - + "5.83\n " - + "14.17\n", + "fred\n " + "20.00\n " + "5.83\n", response.data.decode("utf-8"), ) self.assertIn( - "tata\n " - + "0.00\n " - + "2.50\n " - + "-2.50\n", + "tata\n " + "0.00\n " + "2.50\n", response.data.decode("utf-8"), ) self.assertIn( - "toto\n " - + "0.00\n " - + "0.00\n " - + "0.00\n", + "toto\n " + "0.00\n " + "0.00\n", response.data.decode("utf-8"), ) -- cgit v1.1