diff options
Diffstat (limited to 'apps/dav/tests')
-rw-r--r-- | apps/dav/tests/unit/Files/FileSearchBackendTest.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/Files/FileSearchBackendTest.php b/apps/dav/tests/unit/Files/FileSearchBackendTest.php index f6fe8b1c116..aaa3d8c147e 100644 --- a/apps/dav/tests/unit/Files/FileSearchBackendTest.php +++ b/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); |