aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/includes/MarkdownTest.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2021-09-30 12:10:11 +0200
committerMario Vavti <mario@mariovavti.com>2021-09-30 12:10:11 +0200
commitb0bf646d71b6ee393c9b00b608cf6ee28ca342cc (patch)
treeea4c89684005d85e68e189606a482597044186e5 /tests/unit/includes/MarkdownTest.php
parent5cb5ecdb545d699eb0cbbed33797d0b4c234aadf (diff)
parentaf0896bb8b9fdcc429ad4e64f6326cf00f2359ae (diff)
downloadvolse-hubzilla-b0bf646d71b6ee393c9b00b608cf6ee28ca342cc.tar.gz
volse-hubzilla-b0bf646d71b6ee393c9b00b608cf6ee28ca342cc.tar.bz2
volse-hubzilla-b0bf646d71b6ee393c9b00b608cf6ee28ca342cc.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'tests/unit/includes/MarkdownTest.php')
-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 2a92a58d2..98fe40a49 100644
--- a/tests/unit/includes/MarkdownTest.php
+++ b/tests/unit/includes/MarkdownTest.php
@@ -87,8 +87,8 @@ class MarkdownTest extends UnitTestCase {
"1. Item 1\n2. Item 2\n3. Item **3**"
],
'nested lists' => [
- '<ul><li>Item 1<ol><li>Item 1a</li><li>Item <b>1b</b></ol></li><li>Item 2</li></ul>',
- "- Item 1\n 1. Item 1a\n 2. Item **1b**\n- Item 2"
+ '<ul><li>Item A</li><li>Item B<ul><li>Nested A</li><li>Nested B</li></ul></li><li>Item C</li></ul>',
+ "- Item A\n- Item B\n - Nested A\n - Nested B\n- Item C"
],
'img' => [
'<img src="/path/to/img.png" alt="alt text" title="title text">',