diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-30 13:43:39 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-30 13:43:39 -0500 |
commit | 7f7bccfc83a5238b2772b68c4b11f9258050e88a (patch) | |
tree | 7894671ca8f05a1ea618c74f61e43956f26c34c0 /test/ext/test_mutable.py | |
parent | 74b7bd4365c429425dd944c3dee8681a1ca6abdb (diff) | |
download | sqlalchemy-7f7bccfc83a5238b2772b68c4b11f9258050e88a.tar.gz |
- they don't want "on_". First step, change the naming convention on Events
so that non-events are just _name.
Diffstat (limited to 'test/ext/test_mutable.py')
-rw-r--r-- | test/ext/test_mutable.py | 8 |
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 |