diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-11 11:24:54 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-11 11:24:54 -0500 |
commit | 33eae4a1405b1968ad486bfe3aefee7f7d631128 (patch) | |
tree | 326624218607f1f91ddcccdc61d83dec99251c15 /test/ext/test_compiler.py | |
parent | 09efc11fbc95f8a47200dd102d304b90609e9408 (diff) | |
download | sqlalchemy-33eae4a1405b1968ad486bfe3aefee7f7d631128.tar.gz |
make it more explicit in tests which dialect we want to use for things
Diffstat (limited to 'test/ext/test_compiler.py')
-rw-r--r-- | test/ext/test_compiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
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): |