From 6a3c1bdb990b16bcfc31acb1e48fbd66e5fa619f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 30 Dec 2014 21:06:35 -0600 Subject: [PATCH] Fix strict mode test fail for es6 builds. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 7e655fbad..ad3aba2a8 100644 --- a/test/test.js +++ b/test/test.js @@ -3967,7 +3967,7 @@ test('`_.' + methodName + '` should ' + (isStrict ? '' : 'not ') + 'throw strict mode errors', 1, function() { if (freeze) { - var object = { 'a': null, 'b': function() {} }, + var object = { 'a': undefined, 'b': function() {} }, pass = !isStrict; freeze(object);