diff options
| author | Abhilash Raj | 2015-07-31 20:09:00 +0530 |
|---|---|---|
| committer | Abhilash Raj | 2015-07-31 20:09:00 +0530 |
| commit | 2463db867ef1b105ecfac1ed4736bdc68a9a4826 (patch) | |
| tree | 8d933d378405dd60769463a63ff800197963e236 | |
| parent | a965e47571d12d06327e44f16ee8d5a65fe33eff (diff) | |
| download | mailman-2463db867ef1b105ecfac1ed4736bdc68a9a4826.tar.gz mailman-2463db867ef1b105ecfac1ed4736bdc68a9a4826.tar.zst mailman-2463db867ef1b105ecfac1ed4736bdc68a9a4826.zip | |
| -rw-r--r-- | src/mailman/model/tests/test_listmanager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/model/tests/test_listmanager.py b/src/mailman/model/tests/test_listmanager.py index f608dbdc5..f8290b634 100644 --- a/src/mailman/model/tests/test_listmanager.py +++ b/src/mailman/model/tests/test_listmanager.py @@ -91,7 +91,7 @@ class TestListManager(unittest.TestCase): def test_delete_lists_with_data_in_listarchiver(self): mlist = create_list('ant@example.com') with transaction(): - aset = getUtility(IListArchiverSet)(mlist) + aset = IListArchiverSet(mlist) list_manager = getUtility(IListManager) list_manager.delete(mlist) self.assertIsNone(list_manager.get('ant@example.com')) |
