summaryrefslogtreecommitdiff
path: root/test/lib/testing.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-07-28 17:05:50 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-07-28 17:05:50 -0400
commit22ba1c43b792953ae6f791512d276739c8c09eae (patch)
treebdf9f639b01426a8a2e1c8c61d35533026dd4265 /test/lib/testing.py
parent27913554a85c308d81e6c018669d0246ceecc639 (diff)
downloadsqlalchemy-22ba1c43b792953ae6f791512d276739c8c09eae.tar.gz
-whitespace bonanza, contd
Diffstat (limited to 'test/lib/testing.py')
-rw-r--r--test/lib/testing.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/lib/testing.py b/test/lib/testing.py
index d3bccb53c..02d592235 100644
--- a/test/lib/testing.py
+++ b/test/lib/testing.py
@@ -95,7 +95,7 @@ def db_spec(*dbs):
def fails_on(dbs, reason):
- """Mark a test as expected to fail on the specified database
+ """Mark a test as expected to fail on the specified database
implementation.
Unlike ``crashes``, tests marked as ``fails_on`` will be run
@@ -425,7 +425,7 @@ def resetwarnings():
util.warn = util.langhelpers.warn = testing_warn
warnings.filterwarnings('ignore',
- category=sa_exc.SAPendingDeprecationWarning)
+ category=sa_exc.SAPendingDeprecationWarning)
warnings.filterwarnings('error', category=sa_exc.SADeprecationWarning)
warnings.filterwarnings('error', category=sa_exc.SAWarning)
@@ -479,9 +479,9 @@ def _chain_decorators_on(fn, *decorators):
def run_as_contextmanager(ctx, fn, *arg, **kw):
"""Run the given function under the given contextmanager,
- simulating the behavior of 'with' to support older
+ simulating the behavior of 'with' to support older
Python versions.
-
+
"""
obj = ctx.__enter__()
@@ -576,8 +576,8 @@ class adict(dict):
class AssertsCompiledSQL(object):
- def assert_compile(self, clause, result, params=None,
- checkparams=None, dialect=None,
+ def assert_compile(self, clause, result, params=None,
+ checkparams=None, dialect=None,
checkpositional=None,
use_default_dialect=False,
allow_dialect_select=False):