summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-26 20:53:12 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-26 20:53:12 -0400
commit82965851fe7c01b10a68ae096c0ef2a775c840b0 (patch)
tree9406d90af9ae7284ad25248e2c02a95767d155ca
parentc85fa9fa50ca32523c160eaab58ab6d2b97aacc6 (diff)
downloadsqlalchemy-82965851fe7c01b10a68ae096c0ef2a775c840b0.tar.gz
fix paren here
-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()