Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-10-25 11:07:14 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-10-25 11:54:32 +0300
commit2c8869d286a945c67ea3601f6b8017daa8671285 (patch)
treecc1f6817113f8d9c1aec6255eeba26d2caa0be27 /tests
parent32ba7430b15a428e9261cb01a692626f6c4c2488 (diff)
Fix line breaks in plain text message
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r--tests/Service/HtmlTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Service/HtmlTest.php b/tests/Service/HtmlTest.php
index 8f5d9cff0..8e4272c9f 100644
--- a/tests/Service/HtmlTest.php
+++ b/tests/Service/HtmlTest.php
@@ -82,7 +82,7 @@ class HtmlTest extends TestCase {
return [
['abc', null, 'abc'],
['abc', 'def', "abc-- \r\ndef"],
- ["abc-- \r\ndef", 'ghi', "abc-- \r\ndef-- \r\nghi"],
+ ["abc-- <br />\r\ndef", 'ghi', "abc-- \r\ndef-- \r\nghi"],
];
}