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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-02-11 23:45:56 +0300
committerRoeland Jago Douma <rullzer@owncloud.com>2016-02-12 09:49:36 +0300
commit759b19775debc7dd3427267a6d711acf434d24fb (patch)
treefc9e3a0ae9770e26986ef6eb0080d35e3cd136cc /tests
parent6bd0d51b2a9742108f64b406fba55d5af6264fb2 (diff)
Fix unit tests
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/util.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/lib/util.php b/tests/lib/util.php
index 7880d56f63b..4d788353881 100644
--- a/tests/lib/util.php
+++ b/tests/lib/util.php
@@ -214,13 +214,13 @@ class Test_Util extends \Test\TestCase {
array('..', false),
array('back\\slash', false),
array('sl/ash', false),
- array('lt<lt', false),
- array('gt>gt', false),
- array('col:on', false),
- array('double"quote', false),
- array('pi|pe', false),
- array('dont?ask?questions?', false),
- array('super*star', false),
+ array('lt<lt', true),
+ array('gt>gt', true),
+ array('col:on', true),
+ array('double"quote', true),
+ array('pi|pe', true),
+ array('dont?ask?questions?', true),
+ array('super*star', true),
array('new\nline', false),
// better disallow these to avoid unexpected trimming to have side effects
array(' ..', false),