aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/extension_controller_test.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-05-30 13:26:16 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-05-30 13:26:16 +0200
commita36defb10fd8962d6073bfafd0cab1b7e15fbbda (patch)
tree58560c2c3c82b04d195d6cfaf1b706aa765e22ea /tests/functional/extension_controller_test.php
parent4f6b12ae1d4b9ac681efff0651a0007fed6942b6 (diff)
downloadforums-a36defb10fd8962d6073bfafd0cab1b7e15fbbda.tar
forums-a36defb10fd8962d6073bfafd0cab1b7e15fbbda.tar.gz
forums-a36defb10fd8962d6073bfafd0cab1b7e15fbbda.tar.bz2
forums-a36defb10fd8962d6073bfafd0cab1b7e15fbbda.tar.xz
forums-a36defb10fd8962d6073bfafd0cab1b7e15fbbda.zip
[ticket/develop/11568] Fix some more tests in 3.1
PHPBB3-11568
Diffstat (limited to 'tests/functional/extension_controller_test.php')
-rw-r--r--tests/functional/extension_controller_test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/functional/extension_controller_test.php b/tests/functional/extension_controller_test.php
index 1755843398..3e9428e82c 100644
--- a/tests/functional/extension_controller_test.php
+++ b/tests/functional/extension_controller_test.php
@@ -113,7 +113,7 @@ class phpbb_functional_extension_controller_test extends phpbb_functional_test_c
public function test_missing_argument()
{
$this->phpbb_extension_manager->enable('foo/bar');
- $crawler = $this->request('GET', 'app.php?controller=foo/baz', false);
+ $crawler = $this->request('GET', 'app.php?controller=foo/baz', array(), true);
$this->request('GET', 'app.php?controller=foo/baz', false);
$this->assert_response_success(500);
$this->assertContains('Missing value for argument #1: test in class phpbb_ext_foo_bar_controller:baz', $crawler->filter('body')->text());
@@ -126,7 +126,7 @@ class phpbb_functional_extension_controller_test extends phpbb_functional_test_c
public function test_exception_should_result_in_500_status_code()
{
$this->phpbb_extension_manager->enable('foo/bar');
- $crawler = $this->request('GET', 'app.php?controller=foo/exception', false);
+ $crawler = $this->request('GET', 'app.php?controller=foo/exception', array(), true);
$this->assert_response_success(500);
$this->assertContains('Exception thrown from foo/exception route', $crawler->filter('body')->text());
$this->phpbb_extension_manager->purge('foo/bar');
@@ -143,7 +143,7 @@ class phpbb_functional_extension_controller_test extends phpbb_functional_test_c
*/
public function test_error_ext_disabled_or_404()
{
- $crawler = $this->request('GET', 'app.php?controller=does/not/exist', false);
+ $crawler = $this->request('GET', 'app.php?controller=does/not/exist', array(), true);
$this->assert_response_success(404);
$this->assertContains('No route found for "GET /does/not/exist"', $crawler->filter('body')->text());
}