Skip to content

Commit bfda407

Browse files
committed
minor symfony#24463 [Yaml] initialize inline line numbers (xabbuh)
This PR was submitted for the master branch but it was merged into the 3.4 branch instead (closes symfony#24463). Discussion ---------- [Yaml] initialize inline line numbers | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | Without this change, tests from `InlineTest` cannot be executed standalone as the parsed line number would never be initialized. Commits ------- 33d2aa5 [Yaml] initialize inline line numbers
2 parents a165f1b + 33d2aa5 commit bfda407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Yaml/Tests/InlineTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class InlineTest extends TestCase
2020
{
2121
protected function setUp()
2222
{
23-
Inline::initialize(0);
23+
Inline::initialize(0, 0);
2424
}
2525

2626
/**

0 commit comments

Comments
 (0)