diff options
author | Joas Schilling <coding@schilljs.com> | 2024-09-19 17:44:45 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-09-25 08:39:14 +0200 |
commit | 8cf91a32d8ebc9a917dbc8a4958db72a062d7c70 (patch) | |
tree | 0eaf87d1969bc89998a01506cdd913cf1ad78351 /tests | |
parent | 76ec595a032b3df32ecca5f4d3c1236616d34dc4 (diff) | |
download | nextcloud-server-8cf91a32d8ebc9a917dbc8a4958db72a062d7c70.tar.gz nextcloud-server-8cf91a32d8ebc9a917dbc8a4958db72a062d7c70.zip |
fix(tests): Fix test selection and run unit tests of DAV and user_status
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/apps.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/apps.php b/tests/apps.php index 5388e28ee43..1a9071aa2d3 100644 --- a/tests/apps.php +++ b/tests/apps.php @@ -6,11 +6,7 @@ */ function loadDirectory($path): void { - if (strpos($path, 'integration')) { - return; - } - - if (strpos($path, 'Integration')) { + if (strpos($path, 'apps/user_ldap/tests/Integration')) { return; } |