diff --git a/tests/library/ZendAfi/View/Helper/Accueil/SitoTest.php b/tests/library/ZendAfi/View/Helper/Accueil/SitoTest.php index 321c19024e33c3071ce620db3073101a23664a7a..98b871d51f87cc28092750ca783693e3eb82ac10 100644 --- a/tests/library/ZendAfi/View/Helper/Accueil/SitoTest.php +++ b/tests/library/ZendAfi/View/Helper/Accueil/SitoTest.php @@ -245,13 +245,14 @@ class SitoViewHelperSelectItemsByRandomOrderTest extends SitoViewHelperTestCase for($i=0; $i < 10; $i++) $htmls[] = $this->_helper->getBoite(); - $this->assertEquals(2, count(array_unique($htmls))); + $this->assertEquals(2, count(array_unique($htmls)), json_encode($htmls)); } /** @test */ public function pageShouldNotContainsLinkToReloadModule() { - $this->assertNotXPath($this->html, '//a[contains(@href, "sito/widget-page/id_module/2/id_division/1")]'); + $this->assertNotXPath($this->html, + '//a[contains(@href, "sito/widget-page/id_module/2/id_division/1")]'); } }