aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/forgot_password_test.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-06-23 20:38:11 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-06-23 20:38:11 +0200
commit83326718132811d8b57ac8612ff50887ec0fa101 (patch)
tree8c315f0ae19a2b59be5baae1e5df12aa22724395 /tests/functional/forgot_password_test.php
parent052a4e6f58c4b7fb7e18fbbad8dd3364b5e2c60f (diff)
parent61fa0908bcfa1787baba1bb10bf6c980db90fba7 (diff)
downloadforums-83326718132811d8b57ac8612ff50887ec0fa101.tar
forums-83326718132811d8b57ac8612ff50887ec0fa101.tar.gz
forums-83326718132811d8b57ac8612ff50887ec0fa101.tar.bz2
forums-83326718132811d8b57ac8612ff50887ec0fa101.tar.xz
forums-83326718132811d8b57ac8612ff50887ec0fa101.zip
Merge pull request #2587 from dhruvgoel92/ticket/11528
[ticket/11528] Refactor install_board( ) into a new mink class * dhruvgoel92/ticket/11528: [ticket/11528] Change click_submit() to accept id as param [ticket/11528] Handle case when config file cant be written by installer [ticket/11528] Change NULL to null [ticket/11528] Fix spaces and slashes as per guidelines [ticket/11528] Add asserts in installation steps [ticket/11528] Use 'use' keyword to import classes to current scope [ticket/11528] Move parent::tearDown() to end of tearDown() [ticket/11528] Call parent::tearDown in overrided tearDown method [ticket/11528] Instantiate $client, $driver from functional test case [ticket/11528] Refactor install_board() code into a new class [ticket/11528] Add behat/mink and mink-goutte-driver as dependency
Diffstat (limited to 'tests/functional/forgot_password_test.php')
-rw-r--r--tests/functional/forgot_password_test.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/functional/forgot_password_test.php b/tests/functional/forgot_password_test.php
index 64fa19557f..c95efc5b2e 100644
--- a/tests/functional/forgot_password_test.php
+++ b/tests/functional/forgot_password_test.php
@@ -57,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();
}
}