From dc79e1a02d9997462d3092373a45006da3d4d1b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 18 Jun 2021 13:31:19 +0200 Subject: [PATCH] remove test for members page --- .../Tests/Controller/HouseholdControllerTest.php | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) 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'] ]; } }