summaryrefslogtreecommitdiff
path: root/migrate/tests/fixture/database.py
diff options
context:
space:
mode:
Diffstat (limited to 'migrate/tests/fixture/database.py')
-rw-r--r--migrate/tests/fixture/database.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/migrate/tests/fixture/database.py b/migrate/tests/fixture/database.py
index e000d60..90b25d5 100644
--- a/migrate/tests/fixture/database.py
+++ b/migrate/tests/fixture/database.py
@@ -65,7 +65,7 @@ def usedb(supported=None, not_supported=None):
@param supported: run tests for ONLY these databases
@param not_supported: run tests for all databases EXCEPT these
- If both supported and not_supported are empty, all dbs are assumed
+ If both supported and not_supported are empty, all dbs are assumed
to be supported
"""
if supported is not None and not_supported is not None:
@@ -126,7 +126,7 @@ class DB(Base):
level = TXN
def _engineInfo(self, url=None):
- if url is None:
+ if url is None:
url = self.url
return url
@@ -151,7 +151,7 @@ class DB(Base):
if self.level < self.CONNECT:
return
#self.session = create_session(bind=self.engine)
- if self.level < self.TXN:
+ if self.level < self.TXN:
return
#self.txn = self.session.begin()