summaryrefslogtreecommitdiff
path: root/test/orm/collection.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-02-11 00:28:39 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-02-11 00:28:39 +0000
commitc0b5a0446bf63bdac664421f49742f1156c1911a (patch)
tree9d7822f91325d23e512e77701c9f1280d968ea20 /test/orm/collection.py
parent90c572b513fb33cb5cd17134efb6018abc76bb1f (diff)
downloadsqlalchemy-c0b5a0446bf63bdac664421f49742f1156c1911a.tar.gz
- updated the naming scheme of the base test classes in test/testlib/testing.py;
tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed
Diffstat (limited to 'test/orm/collection.py')
-rw-r--r--test/orm/collection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/collection.py b/test/orm/collection.py
index d67ec980c..4011ac2ce 100644
--- a/test/orm/collection.py
+++ b/test/orm/collection.py
@@ -55,7 +55,7 @@ def dictable_entity(a=None, b=None, c=None):
return Entity(a or str(_id), b or 'value %s' % _id, c)
-class CollectionsTest(PersistTest):
+class CollectionsTest(TestBase):
def _test_adapter(self, typecallable, creator=entity_maker,
to_set=None):
class Foo(object):