diff options
author | Nils Adermann <naderman@naderman.de> | 2013-07-13 17:06:17 -0400 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-07-13 17:06:17 -0400 |
commit | 2aa58ee3b8b727ba774db001998fbbc012e5bba6 (patch) | |
tree | 6a39dc30213fc6b8f48c94d45a54cae55ee04ab4 /tests | |
parent | fd2c309aa7d0266baf78ce0d3ab7f75f70011b1a (diff) | |
parent | b0905cc1d20e0e30d4decabc5bb82a68aa34baa1 (diff) | |
download | forums-2aa58ee3b8b727ba774db001998fbbc012e5bba6.tar forums-2aa58ee3b8b727ba774db001998fbbc012e5bba6.tar.gz forums-2aa58ee3b8b727ba774db001998fbbc012e5bba6.tar.bz2 forums-2aa58ee3b8b727ba774db001998fbbc012e5bba6.tar.xz forums-2aa58ee3b8b727ba774db001998fbbc012e5bba6.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/11686] Not checking for phpBB Debug errors on functional tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 1 |
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 0850cf4112..ed307c3ce2 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -743,6 +743,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.'); } |