diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-26 20:53:12 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-26 20:53:12 -0400 |
| commit | 82965851fe7c01b10a68ae096c0ef2a775c840b0 (patch) | |
| tree | 9406d90af9ae7284ad25248e2c02a95767d155ca /test/engine | |
| parent | c85fa9fa50ca32523c160eaab58ab6d2b97aacc6 (diff) | |
| download | sqlalchemy-82965851fe7c01b10a68ae096c0ef2a775c840b0.tar.gz | |
fix paren here
Diffstat (limited to 'test/engine')
| -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() |
