diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-05-30 18:51:00 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-05-30 18:51:00 +0200 |
commit | 8c4e60186d393a7c42b6bc09e81ba3051092076e (patch) | |
tree | 6e2b7d6f40fd0e417f70a9845e00898fbfc5d4a3 /tests/plugins | |
parent | 6d03a9b2b38dd27c6df3127fcd2e24c686cab9df (diff) | |
download | Shaarli-8c4e60186d393a7c42b6bc09e81ba3051092076e.tar.gz Shaarli-8c4e60186d393a7c42b6bc09e81ba3051092076e.tar.zst Shaarli-8c4e60186d393a7c42b6bc09e81ba3051092076e.zip |
The tag is no longer private
A private tag is never loaded for visitor, making this feature useless.
Diffstat (limited to 'tests/plugins')
-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 | ), |