diff options
author | Michael Hamann <michael@content-space.de> | 2013-10-19 17:10:43 +0200 |
---|---|---|
committer | Michael Hamann <michael@content-space.de> | 2013-10-19 17:10:43 +0200 |
commit | 9f5b9cf15569babaa90f0d6f3dd58cefd5439bc5 (patch) | |
tree | c9988c00e849696c5998bd82347030ca7d5d9a83 | |
parent | a8dba4523d2ecd09dd69a68a36673eaf5c009c57 (diff) | |
download | rpg-9f5b9cf15569babaa90f0d6f3dd58cefd5439bc5.tar.gz rpg-9f5b9cf15569babaa90f0d6f3dd58cefd5439bc5.tar.bz2 |
Fix the indexer indexing test case (changed the data but not the result)
-rw-r--r-- | _test/tests/inc/indexer_indexing.test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/tests/inc/indexer_indexing.test.php b/_test/tests/inc/indexer_indexing.test.php index 8600cf156..628e82e00 100644 --- a/_test/tests/inc/indexer_indexing.test.php +++ b/_test/tests/inc/indexer_indexing.test.php @@ -24,7 +24,7 @@ class indexer_indexing_test extends DokuWikiTest { $indexer->addPageWords('testpage', '0x1 002'); $indexer->addPageWords('notfound', '0x2'); $query = array('001', '002'); - $this->assertEquals(array('001' => array('notfound' => 1), '002' => array('testpage' => 1)), $indexer->lookup($query)); + $this->assertEquals(array('001' => array(), '002' => array('testpage' => 1)), $indexer->lookup($query)); } public function test_meta() { |