aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-09-19 17:44:45 +0200
committerJoas Schilling <coding@schilljs.com>2024-09-25 08:39:14 +0200
commit8cf91a32d8ebc9a917dbc8a4958db72a062d7c70 (patch)
tree0eaf87d1969bc89998a01506cdd913cf1ad78351 /apps
parent76ec595a032b3df32ecca5f4d3c1236616d34dc4 (diff)
downloadnextcloud-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 'apps')
-rw-r--r--apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php b/apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php
index 3b68806a55b..1ca9ce812bc 100644
--- a/apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php
+++ b/apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php
@@ -7,7 +7,7 @@ declare(strict_types=1);
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
-namespace OCA\UserStatus\Tests\Integration\BackgroundJob;
+namespace OCA\UserStatus\Tests\Integration\Service;
use OCA\UserStatus\Service\StatusService;
use OCP\AppFramework\Db\DoesNotExistException;
@@ -176,10 +176,4 @@ class StatusServiceIntegrationTest extends TestCase {
$this->service->findByUserId('test123')->getMessageId(),
);
}
-
- public function testCi(): void {
- // TODO: remove if CI turns red
- self::assertTrue(false);
- }
-
}