Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/integration/features/bootstrap/FeatureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 2 additions & 0 deletions tests/integration/features/conversation-2/files.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
Loading