From 544ea6361380c98abf7c87a296fe95cf2ba58feb Mon Sep 17 00:00:00 2001 From: Vincent Petry <vincent@nextcloud.com> Date: Tue, 23 Mar 2021 18:12:46 +0100 Subject: [PATCH] Fix casing of core test folder It seems Phpunit < 9 was case insensitive. Fixed the phpunit config to target the correct name for the "Core" test directory. Signed-off-by: Vincent Petry <vincent@nextcloud.com> --- tests/phpunit-autotest.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index 17b0b62c0b7..2d7b3ed01cb 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -8,7 +8,7 @@ > <testsuite name='ownCloud'> <directory suffix='.php'>lib/</directory> - <directory suffix='.php'>core/</directory> + <directory suffix='.php'>Core/</directory> <directory suffix='.php'>ocs-provider/</directory> <file>apps.php</file> </testsuite> @@ -32,4 +32,3 @@ <listener class="StartSessionListener" file="startsessionlistener.php" /> </listeners> </phpunit> - -- GitLab