diff --git a/src/Bundle/ChillPersonBundle/Tests/Controller/HouseholdControllerTest.php b/src/Bundle/ChillPersonBundle/Tests/Controller/HouseholdControllerTest.php index 33e930e23..ad7b2ed75 100644 --- a/src/Bundle/ChillPersonBundle/Tests/Controller/HouseholdControllerTest.php +++ b/src/Bundle/ChillPersonBundle/Tests/Controller/HouseholdControllerTest.php @@ -33,19 +33,6 @@ class HouseholdControllerTest extends WebTestCase $this->assertResponseIsSuccessful(); } - /** - * @dataProvider generateValidHouseholdIds - */ - public function testMembers($householdId) - { - $this->client->request( - Request::METHOD_GET, - "/fr/person/household/{$householdId}/members" - ); - - $this->assertResponseIsSuccessful(); - } - /** * @dataProvider generateValidHouseholdIds */ @@ -93,5 +80,7 @@ class HouseholdControllerTest extends WebTestCase \shuffle($ids); yield [ \array_pop($ids)['id'] ]; + yield [ \array_pop($ids)['id'] ]; + yield [ \array_pop($ids)['id'] ]; } }