diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-01-28 12:55:56 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-01-28 12:55:56 +0100 |
commit | 873afe6854cebbd385ccdf5cc6ac981d45c78897 (patch) | |
tree | e506acbd2c59076eec8b581c29820f960c2fb546 | |
parent | 3b3f8916a9e666028ebc10723d6bea99de1342cc (diff) | |
download | rpg-873afe6854cebbd385ccdf5cc6ac981d45c78897.tar.gz rpg-873afe6854cebbd385ccdf5cc6ac981d45c78897.tar.bz2 |
fixed test cases for recent renderer to handler function moves
darcs-hash:20070128115556-7ad00-fb57f70eee08ae82e9b55a19edef3d6aee4f2345.gz
-rw-r--r-- | _test/cases/inc/parser/parser_links.test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/cases/inc/parser/parser_links.test.php b/_test/cases/inc/parser/parser_links.test.php index 7bd0e7f16..05ea12f64 100644 --- a/_test/cases/inc/parser/parser_links.test.php +++ b/_test/cases/inc/parser/parser_links.test.php @@ -58,7 +58,7 @@ class TestOfDoku_Parser_Links extends TestOfDoku_Parser { array('document_start',array()), array('p_open',array()), array('cdata',array("\n".'Foo ')), - array('externallink',array('www.google.com', NULL)), + array('externallink',array('http://www.google.com', 'www.google.com')), array('cdata',array(' Bar'."\n")), array('p_close',array()), array('document_end',array()), @@ -73,7 +73,7 @@ class TestOfDoku_Parser_Links extends TestOfDoku_Parser { array('document_start',array()), array('p_open',array()), array('cdata',array("\n".'Foo ')), - array('externallink',array('ftp.sunsite.com', NULL)), + array('externallink',array('ftp://ftp.sunsite.com', 'ftp.sunsite.com')), array('cdata',array(' Bar'."\n")), array('p_close',array()), array('document_end',array()), |