From: Mike Bayer Date: Fri, 29 Aug 2014 20:29:46 +0000 (-0400) Subject: - use default dialect for compile test here X-Git-Tag: rel_1_0_0b1~205^2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8155138e0aac09c3c78d2eb9b3e06cc092ce42d3;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - use default dialect for compile test here --- diff --git a/test/orm/inheritance/test_single.py b/test/orm/inheritance/test_single.py index 23b1c4fd2a..be42cce521 100644 --- a/test/orm/inheritance/test_single.py +++ b/test/orm/inheritance/test_single.py @@ -164,7 +164,8 @@ class SingleInheritanceTest(testing.AssertsCompiledSQL, fixtures.MappedTest): "SELECT count(*) AS count_1 " "FROM (SELECT employees.employee_id AS employees_employee_id " "FROM employees " - "WHERE employees.type IN (?, ?)) AS anon_1" + "WHERE employees.type IN (:type_1, :type_2)) AS anon_1", + use_default_dialect=True ) def test_select_from(self):