diff options
Diffstat (limited to 'src/mailman/styles/tests/test_styles.py')
| -rw-r--r-- | src/mailman/styles/tests/test_styles.py | 5 |
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.""" |
