diff --git a/tests/application/modules/admin/controllers/ModulesControllerTest.php b/tests/application/modules/admin/controllers/ModulesControllerTest.php index 084448dcb2beb2b81e58d84f9714f86692ff6c6c..6eb02519d5b6955c06f6805505d887998eff843e 100644 --- a/tests/application/modules/admin/controllers/ModulesControllerTest.php +++ b/tests/application/modules/admin/controllers/ModulesControllerTest.php @@ -600,7 +600,7 @@ class ModulesControllerConfigRechercheResultatTest /** @test */ public function listDisplayConfigShouldContainsFacetsEditor() { - $this->assertXPath('//div[@data-heading="liste"]//li[@data-code="W"]'); + $this->assertXPath('//div[@data-heading="liste"]//li[@data-id="W"]'); } @@ -614,13 +614,13 @@ class ModulesControllerConfigRechercheResultatTest * @dataProvider facetsData */ public function facetDisplayShouldContainsDataCode($data_code) { - $this->assertXPath('//div[@data-heading="facettes"]//li[@data-code="' . $data_code . '"]'); + $this->assertXPath('//div[@data-heading="facettes"]//li[@data-id="' . $data_code . '"]'); } /** @test */ public function facetDisplayShouldNotContainsRootCustomFieldsChoice() { - $this->assertNotXPath('//div[@data-heading="facettes"]//li[@data-code="HCFCF"]'); + $this->assertNotXPath('//div[@data-heading="facettes"]//li[@data-id="HCFCF"]'); } }