From 53168e4cfd399e52403a4a322ecd63fea1fa10e6 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 16 Feb 2016 18:49:43 -0800 Subject: [PATCH] Remove dup `_.invertBy` test. --- test/test.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/test/test.js b/test/test.js index cef82a695..b6369710a 100644 --- a/test/test.js +++ b/test/test.js @@ -7671,19 +7671,6 @@ assert.deepEqual(actual, expected); }); - QUnit.test('should use `_.identity` when `iteratee` is nullish', function(assert) { - assert.expect(1); - - var values = [, null, undefined], - expected = lodashStable.map(values, lodashStable.constant({ '1': ['a', 'c'], '2': ['b'] })); - - var actual = lodashStable.map(values, function(value, index) { - return index ? _.invertBy(object, value) : _.invertBy(object); - }); - - assert.deepEqual(actual, expected); - }); - QUnit.test('should only add multiple values to own, not inherited, properties', function(assert) { assert.expect(1);