]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix paren here
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 27 Jul 2014 00:53:12 +0000 (20:53 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 27 Jul 2014 00:53:12 +0000 (20:53 -0400)
test/engine/test_execute.py

index 50cf41311d279a420ca2401ed9a60a0fb4c52789..efce371a543a84f5607f6cabf23253411b81a770 100644 (file)
@@ -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()