diff --git a/tests/PHPUnit/Integration/Core/CliMultiTest.php b/tests/PHPUnit/Integration/Core/CliMultiTest.php
index a16459fb96e91cfd24727db1fc28c88fb3abbf75..99feb19f7076c17a728ae6d38f358c170c5950d8 100644
--- a/tests/PHPUnit/Integration/Core/CliMultiTest.php
+++ b/tests/PHPUnit/Integration/Core/CliMultiTest.php
@@ -131,7 +131,7 @@ class Core_CliMultiTest extends IntegrationTestCase
         // performs a redirect
         $response = $this->cliMulti->request(array('/'));
 
-        $this->assertEmpty($response[0]);
+        $this->assertStringStartsWith('<!DOCTYPE html>', $response[0]);
     }
 
     public function test_request_shouldBeAbleToRenderARegularPageInPiwik()
@@ -231,4 +231,4 @@ class Core_CliMultiTest extends IntegrationTestCase
         return $numFilesInTmp + $numFilesInSubfolders;
     }
 
-}
\ No newline at end of file
+}