Skip to content

Commit 46dc6ab

Browse files
[PropertyInfo] Fix TypeTest duplicated assert
1 parent 02db9c2 commit 46dc6ab

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)