Commit 6e282062 authored by Michal Čihař's avatar Michal Čihař

Wrap long lines

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 20a31298
......@@ -69,15 +69,18 @@ class BillingTest(TestCase):
call_command('billing_check', stdout=out)
self.assertEqual(
out.getvalue(),
'Following billings are over limit:\n * test0, test1: bill (test)\n'
'Following billings are over limit:\n'
' * test0, test1: bill (test)\n'
)
self.invoice.delete()
out = StringIO()
call_command('billing_check', stdout=out)
self.assertEqual(
out.getvalue(),
'Following billings are over limit:\n * test0, test1: bill (test)\n'
'Following billings are past due date:\n * test0, test1: bill (test)\n'
'Following billings are over limit:\n'
' * test0, test1: bill (test)\n'
'Following billings are past due date:\n'
' * test0, test1: bill (test)\n'
)
def test_invoice_validation(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment