summaryrefslogtreecommitdiff
path: root/test/lib/fixtures.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/fixtures.py')
-rw-r--r--test/lib/fixtures.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lib/fixtures.py b/test/lib/fixtures.py
index 41a72c9a4..451eeb43b 100644
--- a/test/lib/fixtures.py
+++ b/test/lib/fixtures.py
@@ -268,7 +268,7 @@ class MappedTest(_ORMTest, TablesTest, testing.AssertsExecutionResults):
"""Run a setup method, framing the operation with a Base class
that will catch new subclasses to be established within
the "classes" registry.
-
+
"""
cls_registry = cls.classes
class FindFixture(type):
@@ -289,7 +289,7 @@ class MappedTest(_ORMTest, TablesTest, testing.AssertsExecutionResults):
def _teardown_each_mappers(self):
# some tests create mappers in the test bodies
- # and will define setup_mappers as None -
+ # and will define setup_mappers as None -
# clear mappers in any case
if self.run_setup_mappers != 'once':
sa.orm.clear_mappers()
@@ -328,7 +328,7 @@ class DeclarativeMappedTest(MappedTest):
cls, classname, bases, dict_)
class DeclarativeBasic(object):
__table_cls__ = schema.Table
- _DeclBase = declarative_base(metadata=cls.declarative_meta,
+ _DeclBase = declarative_base(metadata=cls.declarative_meta,
metaclass=FindFixtureDeclarative,
cls=DeclarativeBasic)
cls.DeclarativeBasic = _DeclBase