From bac531ccabfaf91a4f79a1b4492b8640127a9aad Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 29 Jun 2016 08:00:29 +0200 Subject: [PATCH] fixed test --- .../PropertyInfo/Tests/Extractors/PhpDocExtractorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/PropertyInfo/Tests/Extractors/PhpDocExtractorTest.php b/src/Symfony/Component/PropertyInfo/Tests/Extractors/PhpDocExtractorTest.php index 6049df7f63..332d1c4f8c 100644 --- a/src/Symfony/Component/PropertyInfo/Tests/Extractors/PhpDocExtractorTest.php +++ b/src/Symfony/Component/PropertyInfo/Tests/Extractors/PhpDocExtractorTest.php @@ -43,7 +43,7 @@ class PhpDocExtractorTest extends \PHPUnit_Framework_TestCase { return array( array('foo', null, 'Short description.', 'Long description.'), - array('bar', array(new Type(Type::BUILTIN_TYPE_STRING)), 'This is bar.', null), + array('bar', array(new Type(Type::BUILTIN_TYPE_STRING)), 'This is bar', null), array('baz', array(new Type(Type::BUILTIN_TYPE_INT)), 'Should be used.', null), array('foo2', array(new Type(Type::BUILTIN_TYPE_FLOAT)), null, null), array('foo3', array(new Type(Type::BUILTIN_TYPE_CALLABLE)), null, null),