diff --git a/src/Tests/MonitoringCoreWebTest.php b/src/Tests/MonitoringCoreWebTest.php index 86ebb6a..ce00470 100644 --- a/src/Tests/MonitoringCoreWebTest.php +++ b/src/Tests/MonitoringCoreWebTest.php @@ -250,6 +250,8 @@ class MonitoringCoreWebTest extends MonitoringTestBase { $first_message = (array) $body['tr'][0]->td; $second_message = (array) $body['tr'][1]->td; $this->assertEqual(count($body['tr']), 2, 'Two PHP notices were logged.'); + debug($first_message, 'MESSAGE IS'); + debug($expected_body_one, 'MESSAGE EXPECTED'); $this->assertEqual($first_message, $expected_body_one, 'The first notice is as expected.'); $this->assertEqual($first_message[0], 2, 'The first notice was logged twice.'); $this->assertEqual($second_message, $expected_body_two, 'The second notice is as expected');