Fix unit tests

This commit is contained in:
Roeland Jago Douma 2016-02-11 21:45:56 +01:00
parent 6bd0d51b2a
commit 759b19775d
1 changed files with 7 additions and 7 deletions

View File

@ -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),