From cf7077d53616015454664418e41b3744788f0bbb Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Mon, 5 Mar 2018 14:43:44 +0100 Subject: [PATCH] An attempt to fix the failing test on vertical char --- mail/tests/SaveToVfsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail/tests/SaveToVfsTest.php b/mail/tests/SaveToVfsTest.php index 4790c609c6..13390cb37b 100644 --- a/mail/tests/SaveToVfsTest.php +++ b/mail/tests/SaveToVfsTest.php @@ -95,7 +95,7 @@ class SaveToVfsTest extends \EGroupware\Api\AppTest array('Contains a /', true), array('Contains a ?', true), array('Contains a %', true), - array('Contains a '.chr(11), true), + array('Contains a \x0b', true), array('This one contains them all < > " : | \ * / ? % are not allowed', true) ); }