Skip to content

Commit babaea0

Browse files
committed
fixup! test: Don't test order of applicable mount points when we don't sort
1 parent c3ef886 commit babaea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/files_external/tests/Service/GlobalStoragesServiceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public function testUpdateStorage($updatedStorageParams): void {
168168

169169
$this->assertEquals($updatedStorage->getMountPoint(), $newStorage->getMountPoint());
170170
$this->assertEquals($updatedStorage->getBackendOptions()['password'], $newStorage->getBackendOptions()['password']);
171-
$this->assertEquals($updatedStorage->getApplicableUsers(), $newStorage->getApplicableUsers());
171+
$this->assertEqualsCanonicalizing($updatedStorage->getApplicableUsers(), $newStorage->getApplicableUsers());
172172
$this->assertEquals($updatedStorage->getApplicableGroups(), $newStorage->getApplicableGroups());
173173
$this->assertEquals($updatedStorage->getPriority(), $newStorage->getPriority());
174174
$this->assertEquals(0, $newStorage->getStatus());

0 commit comments

Comments
 (0)