From 3ee2a15cde424e9635413229e1f225229de0a0f9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 21 Oct 2015 22:07:19 -0700 Subject: [PATCH] Cleanup test labels for `-0`. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 18f51de13..91b6298a7 100644 --- a/test/test.js +++ b/test/test.js @@ -14911,7 +14911,7 @@ assert.deepEqual(_.range(21, 10, -3), [21, 18, 15, 12]); }); - QUnit.test('should not coerce `start` of `-0` to `0`', function(assert) { + QUnit.test('should support `start` of `-0`', function(assert) { assert.expect(1); var actual = _.range(-0, 1); @@ -19071,7 +19071,7 @@ assert.strictEqual(_.toInteger(-Infinity), -MAX_INTEGER); }); - QUnit.test('should not coerce `-0` to `0`', function(assert) { + QUnit.test('should support `value` of `-0`', function(assert) { assert.expect(1); assert.strictEqual(1 / _.toInteger(-0), -Infinity);