diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-03-23 18:12:46 +0100 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2021-03-23 18:12:46 +0100 |
commit | e210e8e35adc6c23538e655ac0b2e099a9ed6ec7 (patch) | |
tree | 7303c47edfa9627d6e91d171346d162d527c87c8 /tests/phpunit-autotest.xml | |
parent | a219fa587af77bcb5f9d0a9a9cd3b0e0134153ff (diff) | |
download | nextcloud-server-e210e8e35adc6c23538e655ac0b2e099a9ed6ec7.tar.gz nextcloud-server-e210e8e35adc6c23538e655ac0b2e099a9ed6ec7.zip |
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>
Diffstat (limited to 'tests/phpunit-autotest.xml')
-rw-r--r-- | tests/phpunit-autotest.xml | 3 |
1 files changed, 1 insertions, 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> - |