Skip to content

Commit

Permalink
Fix legacy mysql version assert
Browse files Browse the repository at this point in the history
  • Loading branch information
santi committed Apr 3, 2024
1 parent f63d3c4 commit 5132c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mysql/tests/test_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_docker_run_legacy_mysql():
with engine.begin() as connection:
result = connection.execute(sqlalchemy.text("select version()"))
for row in result:
assert row[0].startswith("5.7.17")
assert row[0].startswith("5.7.44")


@pytest.mark.parametrize("version", ["11.3.2", "10.11.7"])
Expand Down

0 comments on commit 5132c57

Please sign in to comment.