aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/forgot_password_test.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-05-28 14:58:40 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-05-28 14:58:40 +0200
commitf1523944a048e22207d6f200c6d152ecb9fdc136 (patch)
tree3ba72958a07f767ea96a46d296ee64615c105a71 /tests/functional/forgot_password_test.php
parent467c4d62c44a32a1a60bed2e2a2519b10cdebd33 (diff)
downloadforums-f1523944a048e22207d6f200c6d152ecb9fdc136.tar
forums-f1523944a048e22207d6f200c6d152ecb9fdc136.tar.gz
forums-f1523944a048e22207d6f200c6d152ecb9fdc136.tar.bz2
forums-f1523944a048e22207d6f200c6d152ecb9fdc136.tar.xz
forums-f1523944a048e22207d6f200c6d152ecb9fdc136.zip
[ticket/develop/11568] Remove unneccessary calls to assert_response_success()
PHPBB3-11568
Diffstat (limited to 'tests/functional/forgot_password_test.php')
-rw-r--r--tests/functional/forgot_password_test.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/functional/forgot_password_test.php b/tests/functional/forgot_password_test.php
index 7c5f27c07e..65d07672cf 100644
--- a/tests/functional/forgot_password_test.php
+++ b/tests/functional/forgot_password_test.php
@@ -17,7 +17,6 @@ class phpbb_functional_forgot_password_test extends phpbb_functional_test_case
global $config;
$this->add_lang('ucp');
$crawler = $this->request('GET', 'ucp.php?mode=sendpassword');
- $this->assert_response_success();
$this->assertEquals($this->lang('SEND_PASSWORD'), $crawler->filter('h2')->text());
}
@@ -38,7 +37,6 @@ class phpbb_functional_forgot_password_test extends phpbb_functional_test_case
$this->logout();
$crawler = $this->request('GET', 'ucp.php?mode=sendpassword');
- $this->assert_response_success();
$this->assertContains($this->lang('UCP_PASSWORD_RESET_DISABLED', '', ''), $crawler->text());
}