Fix bizarro _.isElement test.

This commit is contained in:
John-David Dalton
2014-07-21 08:33:49 -07:00
parent 8bff019b5d
commit 390cf2114a

View File

@@ -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);