diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 16:27:27 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 16:27:27 -0400 |
commit | 68a350d462b6840d6623a89565f8febf3a997830 (patch) | |
tree | 4d3ea4d93d14738a1c5a418a37917f80a41cf85e /lib/sqlalchemy/orm/dynamic.py | |
parent | a3083eabf467e7f36db0850342758ce162c3eef8 (diff) | |
download | sqlalchemy-68a350d462b6840d6623a89565f8febf3a997830.tar.gz |
- remove test.sql._base, test.engine._base, test.orm._base, move those classes to a new test.lib.fixtures module
- move testing.TestBase to test.lib.fixtures
- massive search and replace
Diffstat (limited to 'lib/sqlalchemy/orm/dynamic.py')
-rw-r--r-- | lib/sqlalchemy/orm/dynamic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/dynamic.py b/lib/sqlalchemy/orm/dynamic.py index bdcb7b6b2..d4a031d9a 100644 --- a/lib/sqlalchemy/orm/dynamic.py +++ b/lib/sqlalchemy/orm/dynamic.py @@ -101,7 +101,7 @@ class DynamicAttributeImpl(attributes.AttributeImpl): self, attributes.NEVER_SET) - # this is a hack to allow the _base.ComparableEntity fixture + # this is a hack to allow the fixtures.ComparableEntity fixture # to work dict_[self.key] = True return state.committed_state[self.key] |