From 2e87d1d3f95084ee9f216cb1daed27f9a8d87b07 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 22 Sep 2013 19:30:19 +0200 Subject: [PATCH] [Yaml] fixed typo --- src/Symfony/Component/Yaml/Tests/ParseExceptionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Yaml/Tests/ParseExceptionTest.php b/src/Symfony/Component/Yaml/Tests/ParseExceptionTest.php index 7f4511a711..289965e8d9 100644 --- a/src/Symfony/Component/Yaml/Tests/ParseExceptionTest.php +++ b/src/Symfony/Component/Yaml/Tests/ParseExceptionTest.php @@ -19,7 +19,7 @@ class ParseExceptionTest extends \PHPUnit_Framework_TestCase public function testGetMessage() { $exception = new ParseException('Error message', 42, 'foo: bar', '/var/www/app/config.yml'); - if (version_compare(PHP_VERSION, '5.4.0', '>=') { + if (version_compare(PHP_VERSION, '5.4.0', '>=')) { $message = 'Error message in "/var/www/app/config.yml" at line 42 (near "foo: bar")'; } else { $message = 'Error message in "\\/var\\/www\\/app\\/config.yml" at line 42 (near "foo: bar")';