diff options
author | s9e <s9e.dev@gmail.com> | 2013-08-03 14:05:40 +0200 |
---|---|---|
committer | s9e <s9e.dev@gmail.com> | 2013-08-03 14:06:43 +0200 |
commit | 9db1728b4b976c99f5811e578619e37c69e306cd (patch) | |
tree | 689781914f0f2c90904ef832af3d97944b7f0235 | |
parent | 68aa974a207b444199fabe9d754f403d27d700ad (diff) | |
download | forums-9db1728b4b976c99f5811e578619e37c69e306cd.tar forums-9db1728b4b976c99f5811e578619e37c69e306cd.tar.gz forums-9db1728b4b976c99f5811e578619e37c69e306cd.tar.bz2 forums-9db1728b4b976c99f5811e578619e37c69e306cd.tar.xz forums-9db1728b4b976c99f5811e578619e37c69e306cd.zip |
[ticket/11762] Added call to test class's parent::setUp().
Added call to test class's parent::setUp(). Updated copyright year.
PHPBB3-11762
-rw-r--r-- | tests/text_processing/generate_text_for_display_test.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/text_processing/generate_text_for_display_test.php b/tests/text_processing/generate_text_for_display_test.php index 4088e33f30..a157fe7d9a 100644 --- a/tests/text_processing/generate_text_for_display_test.php +++ b/tests/text_processing/generate_text_for_display_test.php @@ -2,7 +2,7 @@ /** * * @package testing -* @copyright (c) 2011 phpBB Group +* @copyright (c) 2013 phpBB Group * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * */ @@ -18,6 +18,8 @@ class phpbb_text_processing_generate_text_for_display_test extends phpbb_test_ca { global $cache, $user; + parent::setUp(); + $cache = new phpbb_mock_cache; $user = new phpbb_mock_user; |