From: whysage <67018871+whysage@users.noreply.github.com> Date: Tue, 6 Feb 2024 17:57:21 +0000 (+0200) Subject: Fix mariadb run tests doc (#10848) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffdbd326bbea8d7d68e08285c50d0da351ebf95a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix mariadb run tests doc (#10848) --- diff --git a/README.unittests.rst b/README.unittests.rst index 046a30f6a9..07b9350378 100644 --- a/README.unittests.rst +++ b/README.unittests.rst @@ -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