From 78d4812b0eebd33ba09408b9878303160ea9c066 Mon Sep 17 00:00:00 2001 From: jdalton Date: Thu, 12 Mar 2015 23:02:23 -0700 Subject: [PATCH] Whitespace nits. [ci skip] --- test/test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test.js b/test/test.js index be025f082..a03d282a3 100644 --- a/test/test.js +++ b/test/test.js @@ -4646,6 +4646,7 @@ test('should return `undefined` when querying empty arrays', 1, function() { var array = []; array['-1'] = 1; + strictEqual(_.first(array), undefined); }); @@ -8929,6 +8930,7 @@ test('should return `undefined` when querying empty arrays', 1, function() { var array = []; array['-1'] = 1; + strictEqual(_.last([]), undefined); });