From 4e8360c030c39004c1cf962c9f5b3baac1b33dd5 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 1 Oct 2014 23:56:58 -0700 Subject: [PATCH] Remove BOM from `_.trim` test. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 07997e9e0..200cf54f7 100644 --- a/test/test.js +++ b/test/test.js @@ -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);