Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix dav application tests
Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc committed Apr 3, 2023
commit 8f26a5d766afb5b95f522e059ac9327a8d8eddcd
3 changes: 1 addition & 2 deletions apps/dav/tests/unit/Connector/Sabre/ObjectTreeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ public function testCopy($sourcePath, $targetPath, $targetParent): void {
$view = $this->createMock(View::class);
$view->expects($this->once())
->method('verifyPath')
->with($targetParent)
->willReturn(true);
->with($targetParent);
$view->expects($this->once())
->method('file_exists')
->with($targetPath)
Expand Down