aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/includes/MarkdownTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/includes/MarkdownTest.php b/tests/unit/includes/MarkdownTest.php
index 61600988d..2a92a58d2 100644
--- a/tests/unit/includes/MarkdownTest.php
+++ b/tests/unit/includes/MarkdownTest.php
@@ -64,11 +64,11 @@ class MarkdownTest extends UnitTestCase {
],
'HTML entities, lt does not work' => [
'& gt > lt <',
- '& gt > lt'
+ '&amp; gt &gt; lt'
],
'escaped HTML entities' => [
'&amp; lt &lt; gt &gt;',
- '& lt < gt >'
+ '&amp; lt &lt; gt &gt;'
],
'linebreak' => [
"line1<br>line2\nline3",