Skip to content

Commit

Permalink
fix sorting order
Browse files Browse the repository at this point in the history
  • Loading branch information
smoench committed Dec 18, 2020
1 parent 15acc7c commit 1c85789
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Configuration/ConfigurationFileNoConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
use function KevinGH\Box\FileSystem\mkdir;
use function KevinGH\Box\FileSystem\remove;
use function KevinGH\Box\FileSystem\touch;
use function natcasesort;
use const PHP_OS_FAMILY;
use function symlink;

Expand Down Expand Up @@ -689,6 +690,8 @@ public function test_it_ignores_the_most_common_non_needed_files_when_guess_the_
'Upgrade.php',
'UpgradeCommand.php',
];
natcasesort($expected);
$expected = array_values($expected);

$noFileConfig = $this->getNoFileConfig();

Expand Down

0 comments on commit 1c85789

Please sign in to comment.