We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82fc9fc commit 84a5951Copy full SHA for 84a5951
tests/conftest.py
@@ -208,6 +208,8 @@ async def mysql_connector_conn(
208
connect: ConnectFixture,
209
) -> AsyncGenerator[MySQLConnectionAbstract, None]:
210
conn = await connect(user="levon_helm")
211
+ # different version mysql-connector uses different default collation
212
+ # run the below query so the tests will not return different results
213
await query(conn, "SET NAMES 'utf8mb4' COLLATE 'utf8mb4_general_ci'")
214
try:
215
yield conn
0 commit comments