summaryrefslogtreecommitdiff
path: root/src/mailman/styles/tests
diff options
context:
space:
mode:
authorJ08nY2017-06-04 17:41:29 +0200
committerJ08nY2017-08-30 14:28:28 +0200
commit103fa8caf88f64d18b95ecc36af5ac53152c4269 (patch)
treef949fe52569816956da68e97d459d187b491eace /src/mailman/styles/tests
parent057bc0704ab6d975e327c11cac204decfb478c4d (diff)
downloadmailman-list-style-descriptions.tar.gz
mailman-list-style-descriptions.tar.zst
mailman-list-style-descriptions.zip
Diffstat (limited to 'src/mailman/styles/tests')
-rw-r--r--src/mailman/styles/tests/test_styles.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mailman/styles/tests/test_styles.py b/src/mailman/styles/tests/test_styles.py
index a763082bf..a09967eb6 100644
--- a/src/mailman/styles/tests/test_styles.py
+++ b/src/mailman/styles/tests/test_styles.py
@@ -31,14 +31,11 @@ from zope.interface.exceptions import DoesNotImplement
class DummyStyle:
name = 'dummy'
- priority = 1
+ description = 'A dummy style.'
def apply(self, mlist):
pass
- def match(self, mlist, styles):
- styles.append(self)
-
class TestStyle(unittest.TestCase):
"""Test styles."""