Skip to content

Commit 5750435

Browse files
committed
sort
1 parent 7ef47cf commit 5750435

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/Finder/BehatMetafilesFinder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ private static function createFinder(array $directories): Finder
4848
->notPath('node_modules')
4949
// test data
5050
->notPath('Fixture')
51+
->sortByName()
5152
->in($directories);
5253
}
5354
}

tests/Analyzer/DuplicatedScenarioNamesAnalyzer/DuplicatedScenarioTitlesAnalyzerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function testSpot(): void
3232
$givenFiles = $duplicatedScenarioNamesToFiles['Same scenario name'];
3333

3434
$this->assertSame(
35-
[__DIR__ . '/Fixture/simple/some.feature', __DIR__ . '/Fixture/simple/another.feature'],
35+
[__DIR__ . '/Fixture/simple/another.feature', __DIR__ . '/Fixture/simple/some.feature'],
3636
$givenFiles
3737
);
3838
}

0 commit comments

Comments
 (0)