diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-09-01 20:03:02 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-10-05 21:16:04 +0530 |
commit | 77ef82682eeb1aea6bccc2ca7b8a14aaad0d02c5 (patch) | |
tree | c17b83ecbb91e7dede362f4a961f10813945b724 /tests/functional/search/postgres_test.php | |
parent | 1cd888e0eeb03c61d3bbe01968cedefa82eced59 (diff) | |
download | forums-77ef82682eeb1aea6bccc2ca7b8a14aaad0d02c5.tar forums-77ef82682eeb1aea6bccc2ca7b8a14aaad0d02c5.tar.gz forums-77ef82682eeb1aea6bccc2ca7b8a14aaad0d02c5.tar.bz2 forums-77ef82682eeb1aea6bccc2ca7b8a14aaad0d02c5.tar.xz forums-77ef82682eeb1aea6bccc2ca7b8a14aaad0d02c5.zip |
[ticket/11608] Remove suffix test from base class
Rename base class to phpbb_functional_search_base and fix Docblocks as per
phpbb guidelines.
PHPBB3-11608
Diffstat (limited to 'tests/functional/search/postgres_test.php')
-rw-r--r-- | tests/functional/search/postgres_test.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/functional/search/postgres_test.php b/tests/functional/search/postgres_test.php index f268be1054..cb769a2857 100644 --- a/tests/functional/search/postgres_test.php +++ b/tests/functional/search/postgres_test.php @@ -1,18 +1,18 @@ <?php /** - * - * @package testing - * @copyright (c) 2013 phpBB Group - * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 - * - */ +* +* @package testing +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ require_once dirname(__FILE__) . '/base_test.php'; /** * @group functional */ -class phpbb_functional_search_postgres_test extends phpbb_functional_search_base_test +class phpbb_functional_search_postgres_test extends phpbb_functional_search_base { protected $search_backend = 'phpbb_search_fulltext_postgres'; } |