From 371b8440c3a57103bfdfe15373b025ee1f4a73d3 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 21 Mar 2024 11:04:03 +0000 Subject: adjust tests after recent commit --- tests/unit/includes/BBCodeTest.php | 6 +++--- 1 file 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

some more text' + 'some text
some more text' ], 'list with linebreaks \r' => [ "some text\r[list]\r[*] item1\r[*] item2\r[/list]\rsome more text", - 'some text

some more text' + 'some text
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

some more text' + 'some text
some more text' ] ]; } -- cgit v1.2.3