We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 185ef8b commit 14b8770Copy full SHA for 14b8770
apps/files_versions/tests/VersioningTest.php
@@ -425,8 +425,9 @@ public function testMoveFileIntoSharedFolderAsRecipient(): void {
425
$this->rootView->file_put_contents($v2, 'version2');
426
427
// move file into the shared folder as recipient
428
- Filesystem::rename('/test.txt', '/folder1/test.txt');
+ $success = Filesystem::rename('/test.txt', '/folder1/test.txt');
429
430
+ $this->assertTrue($success);
431
$this->assertFalse($this->rootView->file_exists($v1));
432
$this->assertFalse($this->rootView->file_exists($v2));
433
0 commit comments