mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-06 05:01:48 +02:00
formated
This commit is contained in:
parent
1217bd0b21
commit
efdb8d7fd7
2 changed files with 4 additions and 9 deletions
|
@ -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)
|
||||||
|
|
|
@ -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"),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue