From 141e40d061674f41c17e0893daf498c4924c2571 Mon Sep 17 00:00:00 2001 From: semen603089 Date: Sat, 15 Jul 2023 09:54:02 +0300 Subject: [PATCH] typo error fix --- README.unittests.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3