This commit is contained in:
James Leong 2019-12-22 10:28:09 -08:00
parent 1217bd0b21
commit efdb8d7fd7
2 changed files with 4 additions and 9 deletions

View file

@ -8,6 +8,7 @@ This document describes changes between each past release.
- Add support for espanol latino america (es_419) - Add support for espanol latino america (es_419)
- Use the external debts lib to solve settlements (#476) - Use the external debts lib to solve settlements (#476)
- Remove balance column in statistics view (#323)
4.1.3 (2019-09-18) 4.1.3 (2019-09-18)

View file

@ -937,21 +937,15 @@ class BudgetTestCase(IhatemoneyTestCase):
response.data.decode("utf-8"), response.data.decode("utf-8"),
) )
self.assertIn( self.assertIn(
"<td>fred</td>\n " "<td>fred</td>\n " + "<td>20.00</td>\n " + "<td>5.83</td>\n",
+ "<td>20.00</td>\n "
+ "<td>5.83</td>\n",
response.data.decode("utf-8"), response.data.decode("utf-8"),
) )
self.assertIn( self.assertIn(
"<td>tata</td>\n " "<td>tata</td>\n " + "<td>0.00</td>\n " + "<td>2.50</td>\n",
+ "<td>0.00</td>\n "
+ "<td>2.50</td>\n",
response.data.decode("utf-8"), response.data.decode("utf-8"),
) )
self.assertIn( self.assertIn(
"<td>toto</td>\n " "<td>toto</td>\n " + "<td>0.00</td>\n " + "<td>0.00</td>\n",
+ "<td>0.00</td>\n "
+ "<td>0.00</td>\n",
response.data.decode("utf-8"), response.data.decode("utf-8"),
) )