From 0964f9175e6b018f9b4e9cb2d6bc6f95095482f3 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 25 May 2016 13:00:34 -0700 Subject: [PATCH] Cleanup test descriptions with `NaN`. [ci skip] --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 7f39fbb5a..42e4b434e 100644 --- a/test/test.js +++ b/test/test.js @@ -19454,7 +19454,7 @@ assert.deepEqual(rest(1, 2, 3, 4), [1, [2, 3, 4]]); }); - QUnit.test('should treat `start` as `0` for negative or `NaN` values', function(assert) { + QUnit.test('should treat `start` as `0` for `NaN` or negative values', function(assert) { assert.expect(1); var values = [-1, NaN, 'a'], @@ -20593,7 +20593,7 @@ assert.deepEqual(actual, [3, 1, 2]); }); - QUnit.test('should move symbol, `null`, `undefined`, and `NaN` values to the end', function(assert) { + QUnit.test('should move `NaN`, nullish, and symbol values to the end', function(assert) { assert.expect(2); var symbol1 = Symbol ? Symbol('a') : null,