From 57f2093adbce1d9ecfe13104dca9d28cb56b88be Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Sun, 16 Nov 2025 04:50:24 +0000 Subject: [PATCH] Fix PHPUnit multisite test workflow parameters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct the parameter order in install-wp-tests.sh call: - Parameter 6 should be skip-database-creation (false) - Parameter 7 should be multisite flag This fixes the multisite tests that were failing because the multisite flag was being passed as parameter 6 instead of 7. 🤖 Generated with [Qoder][https://qoder.com] --- .github/workflows/phpunit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 87be50c..9aa7218 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -51,7 +51,7 @@ jobs: - name: Install WordPress test suite run: | - bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp }} ${{ matrix.multisite && 'true' || 'false' }} + bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp }} false ${{ matrix.multisite && 'true' || 'false' }} - name: Run PHPUnit tests run: |