summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-26 20:53:27 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-26 20:53:27 -0400
commit41a8a853118309a28cffa2a1380a73b77d67a628 (patch)
tree66151c1ec3c9e54356a2fd09fd22ab81664ccde5
parentd2358629c9ea7f12718f32b64c7de7f2030dcd32 (diff)
parent82965851fe7c01b10a68ae096c0ef2a775c840b0 (diff)
downloadsqlalchemy-41a8a853118309a28cffa2a1380a73b77d67a628.tar.gz
Merge branch 'master' into xdist_poc
-rw-r--r--test/engine/test_execute.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py
index 50cf41311..efce371a5 100644
--- a/test/engine/test_execute.py
+++ b/test/engine/test_execute.py
@@ -49,8 +49,9 @@ class ExecuteTest(fixtures.TestBase):
def teardown_class(cls):
metadata.drop_all()
- @testing.fails_on("postgresql+pg8000",
- "pg8000 still doesn't allow single % without params")
+ @testing.fails_on(
+ "postgresql+pg8000",
+ "pg8000 still doesn't allow single paren without params")
def test_no_params_option(self):
stmt = "SELECT '%'" + testing.db.dialect.statement_compiler(
testing.db.dialect, None).default_from()