diff --git a/test/releaseChecklist/SetupCssIntegrityChecklistTest.php b/test/releaseChecklist/SetupCssIntegrityChecklistTest.php index 9c09ed842..b9f918baa 100644 --- a/test/releaseChecklist/SetupCssIntegrityChecklistTest.php +++ b/test/releaseChecklist/SetupCssIntegrityChecklistTest.php @@ -53,7 +53,7 @@ class SetupCssIntegrityChecklistTest extends ItopTestCase $sSetupCssContent = file_get_contents($sSetupCssPath); $this->assertContains('/* integrityCheck: begin (do not remove/edit) */', $sSetupCssContent); $this->assertContains('/* integrityCheck: end (do not remove/edit) */', $sSetupCssContent); - $this->assertGreaterThan(4000, strlen($sSetupCssContent), 'Test if the resulting file is long enough, the value is totally arbitrary (at the time of the writing the file is 5660o long'); + $this->assertGreaterThan(4000, strlen($sSetupCssContent), "Test if the resulting file $sSetupCssPath is long enough, the value is totally arbitrary (at the time of the writing the file is 5660o long"); } } diff --git a/test/releaseChecklist/iTopModulesPhpVersionChecklistTest.php b/test/releaseChecklist/iTopModulesPhpVersionChecklistTest.php index 4b922290f..793677660 100644 --- a/test/releaseChecklist/iTopModulesPhpVersionChecklistTest.php +++ b/test/releaseChecklist/iTopModulesPhpVersionChecklistTest.php @@ -62,7 +62,7 @@ class iTopModulesPhpVersionChecklistTest extends ItopTestCase $matches ); - $this->assertSame($sExpectedVersion, $matches[1]); + $this->assertSame($sExpectedVersion, $matches[1], "$sPhpFile file refer does not refer to current itop version ($matches[1] instead of expected $sExpectedVersion)"); } public function DatamodelItopXmlVersionProvider() diff --git a/test/releaseChecklist/iTopModulesXmlVersionChecklistTest.php b/test/releaseChecklist/iTopModulesXmlVersionChecklistTest.php index a6be36626..b863f3327 100644 --- a/test/releaseChecklist/iTopModulesXmlVersionChecklistTest.php +++ b/test/releaseChecklist/iTopModulesXmlVersionChecklistTest.php @@ -57,7 +57,7 @@ class iTopModulesXmlVersionChecklistTest extends ItopTestCase $matches ); - $this->assertSame($sExpectedXmlVersion, $matches[1]); + $this->assertSame($sExpectedXmlVersion, $matches[1], "$sXmlFile file refer does not refer to current itop version ($matches[1] instead of expected $sExpectedXmlVersion)"); } public function DatamodelItopXmlVersionProvider()