diff options
| author | Mark Sapiro | 2017-02-20 18:36:36 -0800 |
|---|---|---|
| committer | Mark Sapiro | 2017-02-20 18:36:36 -0800 |
| commit | 5d2883cb22e36bc8fe1275ae911b2fd97e6e9da1 (patch) | |
| tree | ead93ea43388b216263eb436068739545eb703d9 /src/mailman/app/tests/test_lifecycle.py | |
| parent | c39ef107c1765f1eb937bfcaae2e23dda0b4c581 (diff) | |
| download | mailman-5d2883cb22e36bc8fe1275ae911b2fd97e6e9da1.tar.gz mailman-5d2883cb22e36bc8fe1275ae911b2fd97e6e9da1.tar.zst mailman-5d2883cb22e36bc8fe1275ae911b2fd97e6e9da1.zip | |
Diffstat (limited to 'src/mailman/app/tests/test_lifecycle.py')
| -rw-r--r-- | src/mailman/app/tests/test_lifecycle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/app/tests/test_lifecycle.py b/src/mailman/app/tests/test_lifecycle.py index 4b198d973..dd320c1da 100644 --- a/src/mailman/app/tests/test_lifecycle.py +++ b/src/mailman/app/tests/test_lifecycle.py @@ -60,8 +60,8 @@ class TestLifecycle(unittest.TestCase): '(unterminated character set|' 'unexpected end of regular expression)$' ) - # Remove the list. - remove_list(mlist) + # Check that the list was actually created. + self.assertIs(os.path.isdir(mlist.data_path), True) @configuration('mailman', listname_chars='[a-z]') def test_listname_with_minimal_listname_chars(self): |
