Skip to content

Commit e04fc83

Browse files
committed
Fix issue in Github action 3 - related to different symfony/yaml version
1 parent 2e89e6a commit e04fc83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/spec/PathTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ public function testPathParametersAreArrays()
228228

229229
if (static::majorSymfonyYamlVersion() == 6) {
230230
$expected = "{$dirSep}data{$dirSep}issue{$dirSep}155/compiled-symfony-6.yml";
231-
} elseif (static::majorSymfonyYamlVersion() == 7) {
232-
$expected = "{$dirSep}data{$dirSep}issue{$dirSep}155/compiled-symfony-6.yml";
231+
} elseif (static::majorSymfonyYamlVersion() == 5) {
232+
$expected = "{$dirSep}data{$dirSep}issue{$dirSep}155/compiled-symfony-5.yml";
233233
}
234234

235235
$this->assertFileEquals(dirname(__DIR__) . $dirSep.'compiled.yml', dirname(__DIR__) . $expected);

0 commit comments

Comments
 (0)