summaryrefslogtreecommitdiff
path: root/test/ext/test_mutable.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ext/test_mutable.py')
-rw-r--r--test/ext/test_mutable.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ext/test_mutable.py b/test/ext/test_mutable.py
index e9573f50d..8a51bd3fa 100644
--- a/test/ext/test_mutable.py
+++ b/test/ext/test_mutable.py
@@ -51,8 +51,8 @@ class _MutableDictTestBase(object):
def teardown(self):
# clear out mapper events
- Mapper.dispatch.clear()
- ClassManager.dispatch.clear()
+ Mapper.dispatch._clear()
+ ClassManager.dispatch._clear()
super(_MutableDictTestBase, self).teardown()
@testing.resolve_artifact_names
@@ -180,8 +180,8 @@ class MutableCompositesTest(_base.MappedTest):
def teardown(self):
# clear out mapper events
- Mapper.dispatch.clear()
- ClassManager.dispatch.clear()
+ Mapper.dispatch._clear()
+ ClassManager.dispatch._clear()
super(MutableCompositesTest, self).teardown()
@classmethod