Skip to content

Commit cdf7b08

Browse files
committed
minor symfony#19215 fixed test (fabpot)
This PR was merged into the 2.8 branch. Discussion ---------- fixed test | Q | A | ------------- | --- | Branch? | 2.8 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Commits ------- bac531c fixed test
2 parents 6271446 + bac531c commit cdf7b08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/PropertyInfo/Tests/Extractors/PhpDocExtractorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function typesProvider()
4343
{
4444
return array(
4545
array('foo', null, 'Short description.', 'Long description.'),
46-
array('bar', array(new Type(Type::BUILTIN_TYPE_STRING)), 'This is bar.', null),
46+
array('bar', array(new Type(Type::BUILTIN_TYPE_STRING)), 'This is bar', null),
4747
array('baz', array(new Type(Type::BUILTIN_TYPE_INT)), 'Should be used.', null),
4848
array('foo2', array(new Type(Type::BUILTIN_TYPE_FLOAT)), null, null),
4949
array('foo3', array(new Type(Type::BUILTIN_TYPE_CALLABLE)), null, null),

0 commit comments

Comments
 (0)