From: Mike Bayer Date: Sun, 27 Jul 2014 00:53:12 +0000 (-0400) Subject: fix paren here X-Git-Tag: rel_1_0_0b1~274^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=82965851fe7c01b10a68ae096c0ef2a775c840b0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix paren here --- diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py index 50cf41311d..efce371a54 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()