Skip to content

Commit

Permalink
match the order to what we're passing
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Feb 9, 2024
1 parent 87354fb commit 4628d3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,10 @@ install_test_suite() {
}

install_db() {
DB_HOST=${1:-"127.0.0.1"}
DB_NAME=${2:-"wordpress_test"}
DB_USER=${3:-"root"}
DB_PASS=${4:-""}
DB_NAME=${1:-"wordpress_test"}
DB_USER=${2:-"root"}
DB_PASS=${3:-""}
DB_HOST=${4:-"127.0.0.1"}

if [ "${SKIP_DB_CREATE}" = "true" ]; then
return 0
Expand Down

0 comments on commit 4628d3f

Please sign in to comment.