diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-06-21 16:39:11 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-06-21 16:39:11 -0400 |
| commit | 8b8e3a6f9db275be28ef6b6abde58ee085745cc2 (patch) | |
| tree | 03d76a13dded63cc1b8947acd1653fa0b3a8b410 /test/orm/test_options.py | |
| parent | 4dd4e9e4c5f6f4212d8101004e0815bc60f07b70 (diff) | |
| download | sqlalchemy-8b8e3a6f9db275be28ef6b6abde58ee085745cc2.tar.gz | |
further fixes to test_options_entities_three
this needs to be on default dialect for consistent
rendering of "JOIN"
Change-Id: I0bd16d8ef8161e2deef7e9aff61f9ad02106f30d
Diffstat (limited to 'test/orm/test_options.py')
| -rw-r--r-- | test/orm/test_options.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/orm/test_options.py b/test/orm/test_options.py index 78826a735..cd91e222e 100644 --- a/test/orm/test_options.py +++ b/test/orm/test_options.py @@ -404,6 +404,8 @@ class OfTypePathingTest(PathTest, QueryTest): class WithEntitiesTest(QueryTest, AssertsCompiledSQL): + __dialect__ = "default" + def test_options_legacy_with_entities_onelevel(self): """test issue #6253 (part of #6503)""" |
