aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-07-13 12:06:05 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-07-13 12:06:05 -0500
commit6bfa2fc0551af7e4eb99c1452031a2f423611a6f (patch)
tree309abce8fd8ca699a31088cf0a54a45692f0261a /tests
parentb1b37ddde2ddf6bae5d64e634f070c7f7afd251f (diff)
downloadforums-6bfa2fc0551af7e4eb99c1452031a2f423611a6f.tar
forums-6bfa2fc0551af7e4eb99c1452031a2f423611a6f.tar.gz
forums-6bfa2fc0551af7e4eb99c1452031a2f423611a6f.tar.bz2
forums-6bfa2fc0551af7e4eb99c1452031a2f423611a6f.tar.xz
forums-6bfa2fc0551af7e4eb99c1452031a2f423611a6f.zip
[ticket/11686] Not checking for phpBB Debug errors on functional tests
PHPBB3-11686
Diffstat (limited to 'tests')
-rw-r--r--tests/test_framework/phpbb_functional_test_case.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php
index 684d7a84cb..66af0db2b1 100644
--- a/tests/test_framework/phpbb_functional_test_case.php
+++ b/tests/test_framework/phpbb_functional_test_case.php
@@ -577,6 +577,7 @@ class phpbb_functional_test_case extends phpbb_test_case
// Any output before the doc type means there was an error
$content = self::$client->getResponse()->getContent();
+ self::assertNotContains('[phpBB Debug]', $content);
self::assertStringStartsWith('<!DOCTYPE', trim($content), 'Output found before DOCTYPE specification.');
}