Skip to content

Commit da810df

Browse files
minor symfony#59567 [PropertyInfo] Fix TypeTest duplicated assert (alexandre-daubois)
This PR was merged into the 6.4 branch. Discussion ---------- [PropertyInfo] Fix `TypeTest` duplicated assert | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | - | License | MIT Commits ------- 46dc6ab [PropertyInfo] Fix `TypeTest` duplicated assert
2 parents 02db9c2 + 46dc6ab commit da810df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/PropertyInfo/Tests/TypeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function testArrayCollection()
7575
$this->assertTrue($firstValueType->isCollection());
7676
$this->assertEquals(Type::BUILTIN_TYPE_ARRAY, $secondValueType->getBuiltinType());
7777
$this->assertFalse($secondValueType->isNullable());
78-
$this->assertTrue($firstValueType->isCollection());
78+
$this->assertTrue($secondValueType->isCollection());
7979
}
8080

8181
public function testInvalidCollectionValueArgument()

0 commit comments

Comments
 (0)