diff options
| -rw-r--r-- | test/engine/test_execute.py | 5 |
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() |
