From 5d87205659d85c9c3a2225453367a3441532c9fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 9 Apr 2023 11:55:15 +0800 Subject: [PATCH] Changed the data in the ReportTestData class to be non-US-ASCII. --- tests/test_report.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_report.py b/tests/test_report.py index a2ca65b..f14e187 100644 --- a/tests/test_report.py +++ b/tests/test_report.py @@ -412,12 +412,12 @@ class ReportTestData(BaseTestData): break self._add_simple_journal_entry( (j_date - today).days, "USD", - "Salary", "1200", Accounts.BANK, Accounts.SERVICE) + "Salary薪水", "1200", Accounts.BANK, Accounts.SERVICE) month = month + 1 if month > 12: year = year + 1 month = 1 self._add_simple_journal_entry( - 1, "USD", "Withdraw", "1000", Accounts.CASH, Accounts.BANK) + 1, "USD", "Withdraw領錢", "1000", Accounts.CASH, Accounts.BANK) self._add_simple_journal_entry( - 0, "USD", "Dinner", "40", Accounts.MEAL, Accounts.CASH) + 0, "USD", "Dinner晚餐", "40", Accounts.MEAL, Accounts.CASH)