summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/db/test_envelope.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/db/test_envelope.py b/tests/db/test_envelope.py
index b7612f37..86e481bf 100644
--- a/tests/db/test_envelope.py
+++ b/tests/db/test_envelope.py
@@ -94,7 +94,7 @@ class TestEnvelope(unittest.TestCase):
'From: foo@example.com\n'
'To: bar@example.com,\n'
' baz@example.com\n'
- 'Subject: Test email\n'
+ 'Subject: Fwd: Test email\n'
'\n'
'Some body content: which is not a header.\n'
)
@@ -103,7 +103,7 @@ class TestEnvelope(unittest.TestCase):
self.assertDictEqual(envlp.headers, {
'From': ['foo@example.com'],
'To': ['bar@example.com, baz@example.com'],
- 'Subject': ['Test email']
+ 'Subject': ['Fwd: Test email']
})
self.assertEqual(envlp.body,
'Some body content: which is not a header.')