From 33eae4a1405b1968ad486bfe3aefee7f7d631128 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 11 Feb 2011 11:24:54 -0500 Subject: make it more explicit in tests which dialect we want to use for things --- test/ext/test_compiler.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/ext/test_compiler.py') diff --git a/test/ext/test_compiler.py b/test/ext/test_compiler.py index 116b0f229..eaa46cc28 100644 --- a/test/ext/test_compiler.py +++ b/test/ext/test_compiler.py @@ -10,6 +10,7 @@ from sqlalchemy.sql import table, column, visitors from test.lib import * class UserDefinedTest(TestBase, AssertsCompiledSQL): + __dialect__ = 'default' def test_column(self): @@ -266,6 +267,7 @@ class UserDefinedTest(TestBase, AssertsCompiledSQL): class DefaultOnExistingTest(TestBase, AssertsCompiledSQL): """Test replacement of default compilation on existing constructs.""" + __dialect__ = 'default' def teardown(self): for cls in (Select, _BindParamClause): -- cgit v1.2.1