summaryrefslogtreecommitdiff
path: root/_test/cases/inc/parser/parser_replacements.test.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2005-10-23 00:03:20 +0200
committerAndreas Gohr <andi@splitbrain.org>2005-10-23 00:03:20 +0200
commit467394f64fcb5840be550db8319252af35df7b93 (patch)
tree0e99311a64e2992a068a2d15f712d50376c7dd84 /_test/cases/inc/parser/parser_replacements.test.php
parentbc5021e986d7e06c99001e7c409afdf1d16335ff (diff)
downloadrpg-467394f64fcb5840be550db8319252af35df7b93.tar.gz
rpg-467394f64fcb5840be550db8319252af35df7b93.tar.bz2
more test fixes (down to 55)
darcs-hash:20051022220320-7ad00-ada9d82ad5fdc670cfecc0f3fbdc50f6ed7fc036.gz
Diffstat (limited to '_test/cases/inc/parser/parser_replacements.test.php')
-rw-r--r--_test/cases/inc/parser/parser_replacements.test.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/_test/cases/inc/parser/parser_replacements.test.php b/_test/cases/inc/parser/parser_replacements.test.php
index 0aae4496b..c026e2b19 100644
--- a/_test/cases/inc/parser/parser_replacements.test.php
+++ b/_test/cases/inc/parser/parser_replacements.test.php
@@ -339,11 +339,10 @@ class TestOfDoku_Parser_Replacements extends TestOfDoku_Parser {
array('p_close',array()),
array('hr',array()),
array('p_open',array()),
- array('cdata',array(' Bar'."\n")),
+ array('cdata',array("\n Bar\n")),
array('p_close',array()),
array('document_end',array()),
);
-
$this->assertEqual(array_map('stripbyteindex',$this->H->calls),$calls);
}
@@ -358,11 +357,10 @@ class TestOfDoku_Parser_Replacements extends TestOfDoku_Parser {
array('p_close',array()),
array('hr',array()),
array('p_open',array()),
- array('cdata',array(' Bar'."\n")),
+ array('cdata',array("\n Bar\n")),
array('p_close',array()),
array('document_end',array()),
);
-
$this->assertEqual(array_map('stripbyteindex',$this->H->calls),$calls);
}
}