From 390cf2114a73738fa00edb4c031deea79fc29ee5 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 21 Jul 2014 08:33:49 -0700 Subject: [PATCH] Fix bizarro `_.isElement` test. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 1310dfca1..984d69f39 100644 --- a/test/test.js +++ b/test/test.js @@ -5039,7 +5039,7 @@ test('should use a stronger check in browsers', 2, function() { var support = _.support, - expected = !(support.dom && support.nodeClass); + expected = !(support.dom && _.result(support, 'nodeClass', true)); strictEqual(_.isElement(new Element), expected);