summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-10-12 13:03:31 +0200
committerAleksander Machniak <alec@alec.pl>2013-10-12 13:03:31 +0200
commit0f15219a93c7f6de97223d004125fb32438ffaf7 (patch)
treeb060cebc308c531a1249e79dfc8d1b5b0c965c48 /tests
parentd1abd8e339a1346b02ebbca5365cd824adf5f897 (diff)
Fix text wrapping issue with long unwrappable lines (#1489371)
Diffstat (limited to 'tests')
-rw-r--r--tests/Framework/Mime.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Framework/Mime.php b/tests/Framework/Mime.php
index 4db1856be..1450b4f90 100644
--- a/tests/Framework/Mime.php
+++ b/tests/Framework/Mime.php
@@ -197,6 +197,10 @@ class Framework_Mime extends PHPUnit_Framework_TestCase
array("http://xx.xxx.xx.xxx:8080/addressbooks/roundcubexxxxx%40xxxxxxxxxxxxxxxxxxxxxxx.xx.xx/testing/", 70),
"http://xx.xxx.xx.xxx:8080/addressbooks/roundcubexxxxx%40xxxxxxxxxxxxxxxxxxxxxxx.xx.xx/testing/",
),
+ array(
+ array("this-is-just-some-blabla-to-make-this-more-than-seventy-five-characters-in-a-row -- this line should be wrapped", 20, "\n"),
+ "this-is-just-some-blabla-to-make-this-more-than-seventy-five-characters-in-a-row\n-- this line should\nbe wrapped",
+ ),
);
foreach ($samples as $sample) {