diff --git a/test/postbuild_integration/SetupCssIntegrityChecklistTest.php b/test/postbuild_integration/SetupCssIntegrityChecklistTest.php index 681b2d593..8fd0ac157 100644 --- a/test/postbuild_integration/SetupCssIntegrityChecklistTest.php +++ b/test/postbuild_integration/SetupCssIntegrityChecklistTest.php @@ -44,14 +44,10 @@ class SetupCssIntegrityChecklistTest extends ItopTestCase parent::setUp(); } - /** - */ public function testSetupCssIntegrity() { $sSetupCssPath = APPROOT.'css/setup.css'; $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 $sSetupCssPath is long enough, the value is totally arbitrary (at the time of the writing the file is 5660o long"); }