Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-03-23 20:12:46 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-03-24 15:38:42 +0300
commit74447816a4f319706590c217ab0af72e84aa6a8d (patch)
treed273700159696398e76990d9402a478a59d6f81a /tests
parentc555e86e633851413504e920f794055a8857014a (diff)
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')
-rw-r--r--tests/phpunit-autotest.xml3
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>
-