Skip to content

Commit db60bff

Browse files
committed
Fix issue in Github action 5 - related to different symfony/yaml version
1 parent b12c746 commit db60bff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/data/issue/155/compiled-symfony-6.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ paths:
121121
-
122122
name: id
123123
in: path
124-
description: "User's ID"
124+
description: 'User''s ID'
125125
required: true
126126
schema:
127127
type: string

tests/spec/PathTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public function testPathParametersAreArrays()
232232
$expected = "{$dirSep}data{$dirSep}issue{$dirSep}155/compiled-symfony-5.yml";
233233
}
234234

235-
$this->assertFileEquals(dirname(__DIR__) . $dirSep.'compiled.yml', dirname(__DIR__) . $expected);
235+
$this->assertFileEquals(dirname(__DIR__) . $expected, dirname(__DIR__) . $dirSep.'compiled.yml');
236236
unlink(dirname(__DIR__) . '/compiled.yml');
237237
}
238238

0 commit comments

Comments
 (0)