ci: Skip currently PHP 8.4 incompatible test

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/49145/head
Joas Schilling 6 months ago
parent 73de40719e
commit 298948c28c
No known key found for this signature in database
GPG Key ID: F72FA5B49FFA96B0
  1. 4
      apps/dav/tests/unit/Files/FileSearchBackendTest.php

@ -55,6 +55,10 @@ class FileSearchBackendTest extends TestCase {
private $davFolder;
protected function setUp(): void {
if (PHP_VERSION_ID >= 80400) {
$this->markTestSkipped('SearchDAV is not yet PHP 8.4 compatible');
}
parent::setUp();
$this->user = $this->createMock(IUser::class);

Loading…
Cancel
Save