summaryrefslogtreecommitdiff
path: root/tests/commands/thread_test.py
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2017-01-25 11:45:42 +0100
committerLucas Hoffmann <l-m-h@web.de>2017-01-25 11:45:42 +0100
commit74205e663f52e3cfc68ab41283633bc99bac9755 (patch)
tree2fed67f20a274e7caeceb44df69fa43990bbf45c /tests/commands/thread_test.py
parent863c860ce87aaa076880975971c729408cd27db2 (diff)
Fix test for ensure_unique_address with new quoting
Diffstat (limited to 'tests/commands/thread_test.py')
-rw-r--r--tests/commands/thread_test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/commands/thread_test.py b/tests/commands/thread_test.py
index faf112f9..82e57405 100644
--- a/tests/commands/thread_test.py
+++ b/tests/commands/thread_test.py
@@ -13,10 +13,10 @@ from alot.commands import thread
class Test_ensure_unique_address(unittest.TestCase):
- foo = '"foo" <foo@example.com>'
- foo2 = '"foo the fanzy" <foo@example.com>'
- bar = '"bar" <bar@example.com>'
- baz = '"baz" <baz@example.com>'
+ foo = 'foo <foo@example.com>'
+ foo2 = 'foo the fanzy <foo@example.com>'
+ bar = 'bar <bar@example.com>'
+ baz = 'baz <baz@example.com>'
def test_unique_lists_are_unchanged(self):
expected = sorted([self.foo, self.bar])