summaryrefslogtreecommitdiff
path: root/_test/cases/inc/parser/parser_table.test.php
diff options
context:
space:
mode:
Diffstat (limited to '_test/cases/inc/parser/parser_table.test.php')
-rw-r--r--_test/cases/inc/parser/parser_table.test.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/_test/cases/inc/parser/parser_table.test.php b/_test/cases/inc/parser/parser_table.test.php
index 155909b0c..9ec7dab4f 100644
--- a/_test/cases/inc/parser/parser_table.test.php
+++ b/_test/cases/inc/parser/parser_table.test.php
@@ -278,8 +278,7 @@ def');
$calls = array (
array('document_start',array()),
array('p_open',array()),
- array('cdata',array(DOKU_PARSER_EOL)),
- array('cdata',array("abc")),
+ array('cdata',array(DOKU_PARSER_EOL."abc")),
array('p_close',array()),
array('table_open',array(3,2)),
array('tablerow_open',array()),
@@ -306,8 +305,7 @@ def');
array('tablerow_close',array()),
array('table_close',array()),
array('p_open',array()),
- array('cdata',array('def')),
- array('cdata',array(DOKU_PARSER_EOL)),
+ array('cdata',array('def'.DOKU_PARSER_EOL)),
array('p_close',array()),
array('document_end',array()),
);