]> 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)
committerFederico Caselli <cfederico87@gmail.com>
Tue, 6 Feb 2024 17:57:51 +0000 (18:57 +0100)
(cherry picked from commit ffdbd326bbea8d7d68e08285c50d0da351ebf95a)

README.unittests.rst

index 57c6d42dad62b0d01484c86db45eb8a8014a3b38..2ce4f0fff124a1a6d2842c8627f4ce62fbe79239 100644 (file)
@@ -280,7 +280,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