diff options
author | Arthur <arthur@hoa.ro> | 2016-06-06 19:52:32 +0200 |
---|---|---|
committer | Arthur <arthur@hoa.ro> | 2016-06-06 19:52:32 +0200 |
commit | bb9ca54838e2f877635197541e8439171c83d5dc (patch) | |
tree | 4f989b57016895be45f936246ac1047bb8abf7c6 /tests | |
parent | 92a381f51737de1e4a03c482fe7c43da311ad556 (diff) | |
parent | 8c4e60186d393a7c42b6bc09e81ba3051092076e (diff) | |
download | Shaarli-bb9ca54838e2f877635197541e8439171c83d5dc.tar.gz Shaarli-bb9ca54838e2f877635197541e8439171c83d5dc.tar.zst Shaarli-bb9ca54838e2f877635197541e8439171c83d5dc.zip |
Merge pull request #582 from ArthurHoaro/hotfix/nomarkdown
The "nomarkdown" tag is no longer private
Diffstat (limited to 'tests')
-rw-r--r-- | tests/plugins/PluginMarkdownTest.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/plugins/PluginMarkdownTest.php b/tests/plugins/PluginMarkdownTest.php index fa7e1d52..3593a556 100644 --- a/tests/plugins/PluginMarkdownTest.php +++ b/tests/plugins/PluginMarkdownTest.php | |||
@@ -125,7 +125,8 @@ class PluginMarkdownTest extends PHPUnit_Framework_TestCase | |||
125 | $data = array( | 125 | $data = array( |
126 | 'links' => array(array( | 126 | 'links' => array(array( |
127 | 'description' => $str, | 127 | 'description' => $str, |
128 | 'tags' => NO_MD_TAG | 128 | 'tags' => NO_MD_TAG, |
129 | 'taglist' => array(NO_MD_TAG), | ||
129 | )) | 130 | )) |
130 | ); | 131 | ); |
131 | 132 | ||
@@ -140,7 +141,8 @@ class PluginMarkdownTest extends PHPUnit_Framework_TestCase | |||
140 | // nth link | 141 | // nth link |
141 | 0 => array( | 142 | 0 => array( |
142 | 'formatedDescription' => $str, | 143 | 'formatedDescription' => $str, |
143 | 'tags' => NO_MD_TAG | 144 | 'tags' => NO_MD_TAG, |
145 | 'taglist' => array(), | ||
144 | ), | 146 | ), |
145 | ), | 147 | ), |
146 | ), | 148 | ), |