diff --git a/tests/PHPUnit/IntegrationTestCase.php b/tests/PHPUnit/IntegrationTestCase.php index d6cbd4e38711793240d9eec0ce537505698a6c1a..030a4cff930a356188890b4f122ceb1636b49155 100755 --- a/tests/PHPUnit/IntegrationTestCase.php +++ b/tests/PHPUnit/IntegrationTestCase.php @@ -719,7 +719,6 @@ abstract class IntegrationTestCase extends PHPUnit_Framework_TestCase // with format=original, objects or php arrays can be returned. // we also hide errors to prevent the 'headers already sent' in the ResponseBuilder (which sends Excel headers multiple times eg.) $response = (string)$request->process(); - $this->checkRequestResponse($response); if ($isLiveMustDeleteDates) { $response = $this->removeAllLiveDatesFromXml($response); @@ -828,8 +827,8 @@ abstract class IntegrationTestCase extends PHPUnit_Framework_TestCase if(!is_string($response)) { $response = json_encode($response); } - $this->assertTrue(stripos($response, 'error') === false); - $this->assertTrue(stripos($response, 'exception') === false); + $this->assertTrue(stripos($response, 'error') === false, "error in $response"); + $this->assertTrue(stripos($response, 'exception') === false, "exception in $response"); } protected function removeAllLiveDatesFromXml($input)