-
Notifications
You must be signed in to change notification settings - Fork 26
Closed
Milestone
Description
Howdy @schlessera!
As we talked yesterday, I'm submitting the bug we found during the #WCEU2022ContributorDay.
It's located in vendor/wp-cli/wp-cli-tests/bin/install-package-tests in Line #54.
mysql -e "CREATE USER IF NOT EXISTS \${TEST_DB}`@'%' IDENTIFIED WITH mysql_native_password BY '${TEST_PASSWORD}'" ${HOST_STRING} -u"${USER}" "${PASSWORD_STRING}"`
Should be:
mysql -e "CREATE USER IF NOT EXISTS \${TEST_USER}`@'%' IDENTIFIED WITH mysql_native_password BY '${TEST_PASSWORD}'" ${HOST_STRING} -u"${USER}" "${PASSWORD_STRING}"`
Will send a PR for this ASAP.
Reactions are currently unavailable