Remove BOM from _.trim test.

This commit is contained in:
John-David Dalton
2014-10-01 23:56:58 -07:00
parent fbd80746a5
commit 4e8360c030

View File

@@ -11411,7 +11411,7 @@
});
test('`_.' + methodName + '` should not remove non-whitespace characters', 1, function() {
var problemChars = '\x85\u200b\ufffe',
var problemChars = '\x85\u200b',
string = problemChars + 'a b c' + problemChars;
strictEqual(func(string), string);