diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-25 16:31:32 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-25 16:31:32 +0200 |
commit | 299954c03d57e5546d46f782bf016d4c7ca90cc0 (patch) | |
tree | 20d2183a3c9e30c76470be4f216d994f9861ec63 /tests | |
parent | 4f82a23ed679b174aaf2a264cb030061f9ab43af (diff) | |
parent | 154e328e2bfb89ce56e6effebb894c6576a770e5 (diff) | |
download | nextcloud-server-299954c03d57e5546d46f782bf016d4c7ca90cc0.tar.gz nextcloud-server-299954c03d57e5546d46f782bf016d4c7ca90cc0.zip |
Merge pull request #24840 from owncloud/fix-missing-ext-str-import
Fix missing use statements in ext. str. tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/phpunit-autotest-external.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit-autotest-external.xml b/tests/phpunit-autotest-external.xml index 1b48c4dc11e..e70391e346a 100644 --- a/tests/phpunit-autotest-external.xml +++ b/tests/phpunit-autotest-external.xml @@ -8,13 +8,13 @@ <testsuite name='ownCloud files external'> <directory suffix=".php">../apps/files_external/tests</directory> <!-- exclude backends as they are called separately --> - <exclude>../apps/files_external/tests/storage/</exclude> + <exclude>../apps/files_external/tests/Storage/</exclude> </testsuite> <!-- filters for code coverage --> <filter> <!-- whitelist processUncoveredFilesFromWhitelist="true" --> <whitelist> - <file>../lib/private/files/storage/dav.php</file> + <file>../lib/private/Files/Storage/DAV.php</file> <directory suffix=".php">../apps/files_external</directory> <exclude> <directory suffix=".php">../apps/files_external/l10n</directory> |