diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-25 17:11:10 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-25 17:11:10 +0200 |
commit | 379f8a1e4538a76d4b9bbc4adf0ebe7b12b1d104 (patch) | |
tree | 49cd75f97d2fa84851ff7604259acbcdb438d115 /tests | |
parent | 2bddf71f2286aa461fc5b5412343e002206d0abe (diff) | |
parent | 2c0743c46b8c338538a80e7e6bd01c33c59bacc6 (diff) | |
download | nextcloud-server-379f8a1e4538a76d4b9bbc4adf0ebe7b12b1d104.tar.gz nextcloud-server-379f8a1e4538a76d4b9bbc4adf0ebe7b12b1d104.zip |
Merge pull request #24604 from owncloud/user_ldap-psr4
Move user_ldap to PSR-4
Diffstat (limited to 'tests')
-rw-r--r-- | tests/apps.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/apps.php b/tests/apps.php index f13a996772f..63895cbd569 100644 --- a/tests/apps.php +++ b/tests/apps.php @@ -10,6 +10,9 @@ function loadDirectory($path) { if (strpos($path, 'integration')) { return; } + if (strpos($path, 'Integration')) { + return; + } if ($dh = opendir($path)) { while ($name = readdir($dh)) { if ($name[0] !== '.') { |