10000 minor #56878 [VarExporter] Fix test expectation (alexandre-daubois) · symfony/symfony@91b3fea · GitHub
[go: up one dir, main page]

Skip to content

Commit 91b3fea

Browse files
committed
minor #56878 [VarExporter] Fix test expectation (alexandre-daubois)
This PR was merged into the 6.4 branch. Discussion ---------- [VarExporter] Fix test expectation | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | - | License | MIT Fixes a wrong expectation introduced in #56488 Commits ------- 19d573a [VarExporter] Fix test expectation
2 parents 54d0ef7 + 19d573a commit 91b3fea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarExporter/Tests/ProxyHelperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static function provideExportSignature()
3737
$expected = str_replace(['.', ' . . . ', '\'$a\', \'$a\n\', "\$a\n"'], [' . ', '...', '\'$a\', "\$a\\\n", "\$a\n"'], $expected);
3838
$expected = str_replace('Bar', '\\'.Bar::class, $expected);
3939
$expected = str_replace('self', '\\'.TestForProxyHelper::class, $expected);
40-
$expected = str_replace('= [namespace\\M_PI, new M_PI]', '= [\M_PI, new \Symfony\Component\VarExporter\Tests\M_PI()]', $expected);
40+
$expected = str_replace('= [namespace\M_PI, new M_PI()]', '= [\M_PI, new \Symfony\Component\VarExporter\Tests\M_PI()]', $expected);
4141

4242
yield [$expected, $method];
4343
}

0 commit comments

Comments
 (0)
0