diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-04-25 17:04:37 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-04-25 17:04:37 +0200 |
commit | b334a2ce0fe3ae196da9686028667c430eb411d1 (patch) | |
tree | 2b56c0929cdbb03747614740b5e52429b9354410 /tests | |
parent | 94dee77647a7ae1a263632a156b5afc14722ad6a (diff) | |
download | forums-b334a2ce0fe3ae196da9686028667c430eb411d1.tar forums-b334a2ce0fe3ae196da9686028667c430eb411d1.tar.gz forums-b334a2ce0fe3ae196da9686028667c430eb411d1.tar.bz2 forums-b334a2ce0fe3ae196da9686028667c430eb411d1.tar.xz forums-b334a2ce0fe3ae196da9686028667c430eb411d1.zip |
[ticket/11495] Move classes to tree/ as they all implement a tree
PHPBB3-11495
Diffstat (limited to 'tests')
-rw-r--r-- | tests/nestedset/set_forum_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/nestedset/set_forum_base.php b/tests/nestedset/set_forum_base.php index 93d4dc3522..0d1cb1f881 100644 --- a/tests/nestedset/set_forum_base.php +++ b/tests/nestedset/set_forum_base.php @@ -56,7 +56,7 @@ class phpbb_tests_nestedset_set_forum_base extends phpbb_database_test_case set_config(null, null, null, $this->config); $this->lock = new phpbb_lock_db('nestedset_forum_lock', $this->config, $this->db); - $this->set = new phpbb_nestedset_forum($this->db, $this->lock, 'phpbb_forums'); + $this->set = new phpbb_tree_nestedset_forum($this->db, $this->lock, 'phpbb_forums'); $this->set_up_forums(); } |