summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-04-24 14:30:16 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-04-24 14:30:16 -0700
commite1634fba862738c79ad9ad0a47ece9a27e004fa1 (patch)
treed346de0458d6b7d26bf6e44f00eb4c008f5f6837 /tests
parentd84220dd55cc4eb54d48cb8e325e417e369cde65 (diff)
Fix some formatting requests for @lucc
Diffstat (limited to 'tests')
-rw-r--r--tests/db/utils_test.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/db/utils_test.py b/tests/db/utils_test.py
index 25c3641d..ed3a5c1b 100644
--- a/tests/db/utils_test.py
+++ b/tests/db/utils_test.py
@@ -319,11 +319,11 @@ class TestDecodeHeader(unittest.TestCase):
' again: ' + self._quote(part, 'utf-8') + \
' latin1: ' + self._base64(part, 'iso-8859-1') + \
' and ' + self._quote(part, 'iso-8859-1')
- expected = u' '.join([
- u'utf-8: ÄÖÜäöü',
- u'again: ÄÖÜäöü',
- u'latin1: ÄÖÜäöü and ÄÖÜäöü',
- ])
+ expected = (
+ u'utf-8: ÄÖÜäöü'
+ u'again: ÄÖÜäöü'
+ u'latin1: ÄÖÜäöü and ÄÖÜäöü'
+ )
self._test(text, expected)
def test_tabs_are_expanded_to_align_with_eigth_spaces(self):