We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c721b6e commit 90d2eefCopy full SHA for 90d2eef
1 file changed
tests/Unit/RecycleBin/Service/RecycleBinServiceTest.php
@@ -81,7 +81,6 @@ public function testRestoreMultipleItemsUsesAsyncPath(): void
81
$this->assertSame(50, $result);
82
}
83
84
-
85
/**
86
* @throws Exception
87
*/
@@ -107,6 +106,7 @@ public function testRestoreMultipleItems(): void
107
106
$repository = $this->makeEmpty(RecycleBinRepositoryInterface::class, [
108
'getItemIdsSortedByPath' => function (array $ids) use (&$capturedIds) {
109
$capturedIds = $ids;
+
110
// Simulate DB sorting by path: parent IDs come first
111
return [5, 10, 15];
112
},
0 commit comments