summaryrefslogtreecommitdiff
path: root/tests/db
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-05-07 09:12:31 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-05-07 09:12:31 -0700
commit22f7391267c89ce216b7ac238dd6cf42f7558c1a (patch)
treee8d2af599d4c6a96bfe475f3bef3e7ca50d53684 /tests/db
parentbd8492cd494fdabc5a7c3db443f29a94f70cb4ca (diff)
Fix bad refactor of a test
Diffstat (limited to 'tests/db')
-rw-r--r--tests/db/utils_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/db/utils_test.py b/tests/db/utils_test.py
index ed3a5c1b..484562fc 100644
--- a/tests/db/utils_test.py
+++ b/tests/db/utils_test.py
@@ -320,8 +320,8 @@ class TestDecodeHeader(unittest.TestCase):
' latin1: ' + self._base64(part, 'iso-8859-1') + \
' and ' + self._quote(part, 'iso-8859-1')
expected = (
- u'utf-8: ÄÖÜäöü'
- u'again: ÄÖÜäöü'
+ u'utf-8: ÄÖÜäöü '
+ u'again: ÄÖÜäöü '
u'latin1: ÄÖÜäöü and ÄÖÜäöü'
)
self._test(text, expected)