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

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-04-04 12:28:36 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-04-04 12:28:36 +0300
commit21c1b090a615672d459825fdd172091dfad669a6 (patch)
tree79890d282055d78843f9d4fb0904305f66d6c6b1
parent3dcfa7b06026b834cf9820fbbd074ade89b870f8 (diff)
Fix folder paths in phpunit.xml
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rw-r--r--tests/phpunit.integration.xml4
-rw-r--r--tests/phpunit.xml4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/phpunit.integration.xml b/tests/phpunit.integration.xml
index eae19f1..a328467 100644
--- a/tests/phpunit.integration.xml
+++ b/tests/phpunit.integration.xml
@@ -1,7 +1,7 @@
-<phpunit bootstrap="tests/bootstrap.php" colors="true">
+<phpunit bootstrap="bootstrap.php" colors="true">
<testsuites>
<testsuite name="integration">
- <directory>./tests/Integration</directory>
+ <directory>./Integration</directory>
</testsuite>
</testsuites>
</phpunit>
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
index 82c96d6..74424d3 100644
--- a/tests/phpunit.xml
+++ b/tests/phpunit.xml
@@ -1,7 +1,7 @@
-<phpunit bootstrap="tests/bootstrap.php" colors="true">
+<phpunit bootstrap="bootstrap.php" colors="true">
<testsuites>
<testsuite name="unit">
- <directory>./tests/Unit</directory>
+ <directory>./Unit</directory>
</testsuite>
</testsuites>
</phpunit>