]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix mariadb run tests doc (#10848)
authorwhysage <67018871+whysage@users.noreply.github.com>
Tue, 6 Feb 2024 17:57:21 +0000 (19:57 +0200)
committerGitHub <noreply@github.com>
Tue, 6 Feb 2024 17:57:21 +0000 (18:57 +0100)
README.unittests.rst

index 046a30f6a92c8e9aaaccb4a93a9e4acb0d6a9c0d..07b935037813109ea0cc858ef1089e4238c88597 100644 (file)
@@ -276,7 +276,7 @@ intended for production use!
 
     # configure the database
     sleep 20
-    docker exec -ti mariadb mysql -u root -ppassword -w -e "CREATE DATABASE test_schema CHARSET utf8mb4; GRANT ALL ON test_schema.* TO scott;"
+    docker exec -ti mariadb mariadb -u root -ppassword -w -e "CREATE DATABASE test_schema CHARSET utf8mb4; GRANT ALL ON test_schema.* TO scott;"
 
     # To stop the container. It will also remove it.
     docker stop mariadb