From e3eda105d23174d87ebe6cb2e1989ae671c19e48 Mon Sep 17 00:00:00 2001 From: Andrew Dickinson Date: Sun, 26 Apr 2020 13:59:43 -0400 Subject: [PATCH] Fix overlength line --- ihatemoney/tests/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ihatemoney/tests/tests.py b/ihatemoney/tests/tests.py index 0e7e259e..44fa90a6 100644 --- a/ihatemoney/tests/tests.py +++ b/ihatemoney/tests/tests.py @@ -2868,7 +2868,8 @@ class LocalizeListTestCase(IhatemoneyTestCase): localize_list(list(range(1, 5))), ) self.assertEqual( - f"{em_surround(1)}, {em_surround(2)}, {em_surround(3)}, {em_surround(4)}, and {em_surround(5)}", + f"{em_surround(1)}, {em_surround(2)}, {em_surround(3)}," + f" {em_surround(4)}, and {em_surround(5)}", localize_list(list(range(1, 6))), )