diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2014-06-14 17:46:35 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2014-06-23 01:26:17 +0530 |
commit | c26fa6a15b716dcf43d063b41ec5d646fc115e19 (patch) | |
tree | c6b9113049dab52dd6aafe19a1604aa246b4c803 /tests/functional/forgot_password_test.php | |
parent | 019b345171d271535b32b09f82ad24c16ec8b0b8 (diff) | |
download | forums-c26fa6a15b716dcf43d063b41ec5d646fc115e19.tar forums-c26fa6a15b716dcf43d063b41ec5d646fc115e19.tar.gz forums-c26fa6a15b716dcf43d063b41ec5d646fc115e19.tar.bz2 forums-c26fa6a15b716dcf43d063b41ec5d646fc115e19.tar.xz forums-c26fa6a15b716dcf43d063b41ec5d646fc115e19.zip |
[ticket/11528] Move parent::tearDown() to end of tearDown()
PHPBB3-11528
Diffstat (limited to 'tests/functional/forgot_password_test.php')
-rw-r--r-- | tests/functional/forgot_password_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/forgot_password_test.php b/tests/functional/forgot_password_test.php index efb5f64f87..c95efc5b2e 100644 --- a/tests/functional/forgot_password_test.php +++ b/tests/functional/forgot_password_test.php @@ -47,8 +47,6 @@ class phpbb_functional_forgot_password_test extends phpbb_functional_test_case public function tearDown() { - parent::tearDown(); - $this->login(); $this->admin_login(); @@ -59,5 +57,7 @@ class phpbb_functional_forgot_password_test extends phpbb_functional_test_case 'config[allow_password_reset]' => 1, )); $crawler = self::submit($form); + + parent::tearDown(); } } |