From ea3ef0c97ec20c08f79a5f05b358e968d7f00a62 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sat, 6 Apr 2019 16:32:25 +0200 Subject: [PATCH] remove two invalid test cases --- src/Symfony/Component/Form/Tests/SimpleFormTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Symfony/Component/Form/Tests/SimpleFormTest.php b/src/Symfony/Component/Form/Tests/SimpleFormTest.php index 5233a8f1aae18..6ed1c8ba2c9a1 100644 --- a/src/Symfony/Component/Form/Tests/SimpleFormTest.php +++ b/src/Symfony/Component/Form/Tests/SimpleFormTest.php @@ -67,8 +67,6 @@ public function testGetPropertyPath($name, $propertyPath) public function provideFormNames() { - yield [null, null]; - yield ['', null]; yield ['0', '0']; yield [0, '0']; yield ['name', 'name'];