From 7cdf708e3c907de6ad74db0d4c679c3ca7713bbf Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 6 Dec 2015 10:35:41 -0800 Subject: [PATCH] Prevent false minified method name test fail. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index d409beda5..963b5dd7c 100644 --- a/test/test.js +++ b/test/test.js @@ -22711,7 +22711,7 @@ QUnit.test('should not contain minified method names (test production builds)', function(assert) { assert.expect(1); - var shortNames = ['at', 'eq', 'gt', 'lt']; + var shortNames = ['_', 'at', 'eq', 'gt', 'lt']; assert.ok(lodashStable.every(_.functions(_), function(methodName) { return methodName.length > 2 || lodashStable.includes(shortNames, methodName); }));