Skip to content

Commit 2e87d1d

Browse files
committed
[Yaml] fixed typo
1 parent 213b888 commit 2e87d1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ParseExceptionTest extends \PHPUnit_Framework_TestCase
1919
public function testGetMessage()
2020
{
2121
$exception = new ParseException('Error message', 42, 'foo: bar', '/var/www/app/config.yml');
22-
if (version_compare(PHP_VERSION, '5.4.0', '>=') {
22+
if (version_compare(PHP_VERSION, '5.4.0', '>=')) {
2323
$message = 'Error message in "/var/www/app/config.yml" at line 42 (near "foo: bar")';
2424
} else {
2525
$message = 'Error message in "\\/var\\/www\\/app\\/config.yml" at line 42 (near "foo: bar")';

0 commit comments

Comments
 (0)