summaryrefslogtreecommitdiff
path: root/_test/tests/inc/search
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2013-02-20 20:18:59 +0100
committerMichael Hamann <michael@content-space.de>2013-02-20 20:45:49 +0100
commit5737a81e37e630de02f54e4e6304ede226159306 (patch)
tree9490f1c24edede34cf6ed93b477bfba1325079ec /_test/tests/inc/search
parent6416b708d3d115a6d7529b6c388c796fcb651d55 (diff)
downloadrpg-5737a81e37e630de02f54e4e6304ede226159306.tar.gz
rpg-5737a81e37e630de02f54e4e6304ede226159306.tar.bz2
Revert the search depth behavior changes from #154
This reverts parts of the changes from #154: Before merging the pull request, a depth of 1 returned just the pages in the root namespace. With the changes in the pull request, a depth of 1 also returned pages in subnamespaces of the root namespace (as it was also tested in the test case). This reverts this part of the changes and a depth of 1 returns just the pages in the root namespace again.
Diffstat (limited to '_test/tests/inc/search')
-rw-r--r--_test/tests/inc/search/search.test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/tests/inc/search/search.test.php b/_test/tests/inc/search/search.test.php
index 9c854a661..33d4e9d8d 100644
--- a/_test/tests/inc/search/search.test.php
+++ b/_test/tests/inc/search/search.test.php
@@ -22,9 +22,9 @@ class search_test extends DokuWikiTest {
search($data, dirname(__FILE__) . '/data', 'search_allpages', array('depth' => 1), 'ns1/ns3');
$this->assertEquals(0, count($data));
- //depth is 1 so I should get only pages from ns1
+ //depth is 2 so I should get only pages from ns1
$data = array();
- search($data, dirname(__FILE__) . '/data', 'search_allpages', array('depth' => 1), 'ns1');
+ search($data, dirname(__FILE__) . '/data', 'search_allpages', array('depth' => 2), 'ns1');
$this->assertEquals(2, count($data));
}