From: semen603089 Date: Sat, 15 Jul 2023 06:54:02 +0000 (+0300) Subject: typo error fix X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=141e40d061674f41c17e0893daf498c4924c2571;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo error fix --- diff --git a/README.unittests.rst b/README.unittests.rst index 9cf309d2d7..294f62d9d4 100644 --- a/README.unittests.rst +++ b/README.unittests.rst @@ -268,7 +268,7 @@ intended for production use! # configure the database sleep 20 - docker exec -ti mysql mysql -u root -ppassword -w -e "CREATE DATABASE test_schema CHARSET utf8mb4; GRANT ALL ON test_schema.* TO scott;" + docker exec -ti mysql mysql -u root -p -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 mysql @@ -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 mysql -u root -p -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