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 <ChristophWurst@users.noreply.github.com>2019-10-25 15:24:34 +0300
committerGitHub <noreply@github.com>2019-10-25 15:24:34 +0300
commitf9abc8bd1012db50813f5d17e98b883d5272a514 (patch)
treede309fddd7745f0535fc18e19a03ab1b2b11a067 /tests
parent4aa9c49ef7316ab2691f90d209ccdbd55f8f1907 (diff)
parent2c8869d286a945c67ea3601f6b8017daa8671285 (diff)
Merge pull request #2167 from nextcloud/fix/plain-text-message-line-breaks
Fix line breaks in plain text message
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"],
];
}