aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-03-21 11:04:03 +0000
committerMario <mario@mariovavti.com>2024-03-21 11:04:03 +0000
commit371b8440c3a57103bfdfe15373b025ee1f4a73d3 (patch)
tree6d3ff84ac1cf8cbd9df8598a27459375ed159e2d
parent49509e73473de6f3528c7fdba8a4fa5437829817 (diff)
downloadvolse-hubzilla-371b8440c3a57103bfdfe15373b025ee1f4a73d3.tar.gz
volse-hubzilla-371b8440c3a57103bfdfe15373b025ee1f4a73d3.tar.bz2
volse-hubzilla-371b8440c3a57103bfdfe15373b025ee1f4a73d3.zip
adjust tests after recent commit
-rw-r--r--tests/unit/includes/BBCodeTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/includes/BBCodeTest.php b/tests/unit/includes/BBCodeTest.php
index 100d28fc4..fedd2df06 100644
--- a/tests/unit/includes/BBCodeTest.php
+++ b/tests/unit/includes/BBCodeTest.php
@@ -109,15 +109,15 @@ class BBCodeTest extends UnitTestCase {
],
'list with linebreaks \n' => [
"some text\n[list]\n[*] item1\n[*] item2\n[/list]\nsome more text",
- 'some text<br /><ul class="listbullet"><li> item1<li> item2</ul><br />some more text'
+ 'some text<br /><ul class="listbullet"><li> item1<li> item2</ul>some more text'
],
'list with linebreaks \r' => [
"some text\r[list]\r[*] item1\r[*] item2\r[/list]\rsome more text",
- 'some text<br /><ul class="listbullet"><li> item1<li> item2</ul><br />some more text'
+ 'some text<br /><ul class="listbullet"><li> item1<li> item2</ul>some more text'
],
'list with linebreaks \r\n' => [
"some text\r\n[list]\r\n[*] item1\r\n[*] item2\r\n[/list]\r\nsome more text",
- 'some text<br /><ul class="listbullet"><li> item1<li> item2</ul><br />some more text'
+ 'some text<br /><ul class="listbullet"><li> item1<li> item2</ul>some more text'
]
];
}