summaryrefslogtreecommitdiff
path: root/src/mailman/rules/tests/test_suspicious.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/rules/tests/test_suspicious.py')
-rw-r--r--src/mailman/rules/tests/test_suspicious.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mailman/rules/tests/test_suspicious.py b/src/mailman/rules/tests/test_suspicious.py
index e1649928c..441fb0b48 100644
--- a/src/mailman/rules/tests/test_suspicious.py
+++ b/src/mailman/rules/tests/test_suspicious.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2015 by the Free Software Foundation, Inc.
+# Copyright (C) 2016 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
@@ -28,7 +28,7 @@ from mailman.testing.layers import ConfigLayer
class TestSuspicious(unittest.TestCase):
- """Test the suspicous rule."""
+ """Test the suspicious rule."""
layer = ConfigLayer
@@ -37,9 +37,8 @@ class TestSuspicious(unittest.TestCase):
self._rule = suspicious.SuspiciousHeader()
def test_header_instance(self):
- # Check the case where the subject is a Header instance
msg = Message()
- msg["From"] = Header("user@example.com")
+ msg['From'] = Header('user@example.com')
self._mlist.bounce_matching_headers = 'from: spam@example.com'
result = self._rule.check(self._mlist, msg, {})
self.assertFalse(result)