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/fileupload_remote_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/fileupload_remote_test.php')
-rw-r--r-- | tests/functional/fileupload_remote_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/fileupload_remote_test.php b/tests/functional/fileupload_remote_test.php index 5d935eec59..b170fc051f 100644 --- a/tests/functional/fileupload_remote_test.php +++ b/tests/functional/fileupload_remote_test.php @@ -40,11 +40,11 @@ class phpbb_functional_fileupload_remote_test extends phpbb_functional_test_case public function tearDown() { - parent::tearDown(); - global $config, $user; $user = null; $config = array(); + + parent::tearDown(); } public function test_invalid_extension() |