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,