diff --git a/tests/integration/features/bootstrap/FeatureContext.php b/tests/integration/features/bootstrap/FeatureContext.php index 14528dc6a34..971afc7a4f4 100644 --- a/tests/integration/features/bootstrap/FeatureContext.php +++ b/tests/integration/features/bootstrap/FeatureContext.php @@ -1114,7 +1114,8 @@ public function userGetsTheRoomForPath(string $user, string $path, int $statusCo self::$tokenToIdentifier[$response['token']] = $identifier; } - private function getFileIdForPath(string $user, string $path): int { + #[Then('/^user "([^"]*)" propfinds path "([^"]*)"$/')] + public function getFileIdForPath(string $user, string $path): int { $this->setCurrentUser($user); $url = "/$user/$path"; diff --git a/tests/integration/features/conversation-2/files.feature b/tests/integration/features/conversation-2/files.feature index a2e16ce64f4..d052da89575 100644 --- a/tests/integration/features/conversation-2/files.feature +++ b/tests/integration/features/conversation-2/files.feature @@ -58,6 +58,8 @@ Feature: conversation/files Given user "participant1" shares "welcome.txt" with user "participant2" with OCS 100 And user "participant2" accepts last share And user "participant1" deletes last share + # FIXME Temporary workaround, should be removed when possible. See https://github.com/nextcloud/spreed/pull/15726 for details + When user "participant2" propfinds path "welcome.txt" When user "participant1" gets the room for path "welcome.txt" with 404 (v1)