From 505f8d5cda83fa7a005d82770a062e92982cc95a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 28 Dec 2015 21:54:50 -0600 Subject: [PATCH] Fix phantomjs test fails. --- test/test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test.js b/test/test.js index 802f5b9fd..380fcfe7e 100644 --- a/test/test.js +++ b/test/test.js @@ -2350,8 +2350,8 @@ stack2, object1 = { 'v0': 0 }, object2 = {}, - symbol = Symbol ? Symbol() : undefined, - keys = [true, false, 1, -Infinity, NaN, { 'a': 1 }, null, 'a', symbol, undefined]; + symbol = Symbol ? Symbol() : {}, + keys = [true, false, 1, -Infinity, NaN, {}, null, 'a', symbol, undefined]; var pairs = lodashStable.map(keys, function(key, index) { var lastIndex = keys.length - 1; @@ -12731,8 +12731,8 @@ QUnit.test('should implement a `Map` interface on the cache object', function(assert) { assert.expect(164); - var symbol = Symbol ? Symbol() : undefined, - keys = [true, false, 1, -Infinity, NaN, { 'a': 1 }, null, 'a', symbol, undefined]; + var symbol = Symbol ? Symbol() : {}, + keys = [true, false, 1, -Infinity, NaN, {}, null, 'a', symbol , undefined]; var pairs = lodashStable.map(keys, function(key, index) { var lastIndex = keys.length - 1;