diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-08-03 18:09:39 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-08-03 18:09:39 -0400 |
| commit | ea6fb4ff5bcffcf71cdbc587504f10f03fe921ca (patch) | |
| tree | db87735a919520bc5c25c22feb4dd74231bd10b2 /test | |
| parent | b5485fe41828c21a555d0d5a6abf29ceb3b3147f (diff) | |
| download | sqlalchemy-ea6fb4ff5bcffcf71cdbc587504f10f03fe921ca.tar.gz | |
adjust mysql utf test
we've updated mysql on jenkins and this test seems to need
a small adjustment
Change-Id: I21508f667700cf8f3200f15af501a66a85f48779
Diffstat (limited to 'test')
| -rw-r--r-- | test/dialect/mysql/test_types.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index 8e7c6ce46..76e800e86 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -511,8 +511,8 @@ class TypeRoundTripTest(fixtures.TestBase, AssertsExecutionResults): ) t.create(connection) t2 = Table("foo", MetaData(), autoload_with=connection) - eq_(t2.kwargs["mysql_collate"], "utf8_bin") - eq_(t2.kwargs["mysql_default charset"], "utf8") + assert t2.kwargs["mysql_collate"] in ("utf8_bin", "utf8mb3_bin") + assert t2.kwargs["mysql_default charset"] in ("utf8", "utf8mb3") # test [ticket:2906] # in order to test the condition here, need to use |
