We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28bb815 commit 7eb7604Copy full SHA for 7eb7604
1 file changed
tests/system/Helpers/FilesystemHelperTest.php
@@ -451,7 +451,10 @@ public function testGetDirFileInfo(): void
451
],
452
];
453
454
- $this->assertSame($expected, get_dir_file_info(SUPPORTPATH . 'Files/baker'));
+ $result = get_dir_file_info(SUPPORTPATH . 'Files/baker');
455
+ ksort($result);
456
+
457
+ $this->assertSame($expected, $result);
458
}
459
460
public function testGetDirFileInfoNested(): void
0 commit comments