From 6b59a924e842cbcf26b289f3d92a59942e64a389 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 23 Aug 2014 12:53:12 -0700 Subject: [PATCH] Avoid false fails on Sauce mocked alert/prompt functions. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 847fb00df..014a2e0a6 100644 --- a/test/test.js +++ b/test/test.js @@ -6102,8 +6102,8 @@ (function() { var args = arguments; - test('should return `true` for native methods', 8, function() { - _.each([root.alert, Array, create, freeze, root.prompt, slice, Uint8Array], function(func) { + test('should return `true` for native methods', 6, function() { + _.each([Array, create, root.encodeURI, slice, Uint8Array], function(func) { if (func) { strictEqual(_.isNative(func), true); }