Skip to content

Commit

Permalink
Merge e35f79f into 2851e9a
Browse files Browse the repository at this point in the history
  • Loading branch information
liroyleshed committed May 2, 2018
2 parents 2851e9a + e35f79f commit 5a3a272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/collections.js
Expand Up @@ -438,7 +438,7 @@

QUnit.test('includes with NaN', function(assert) {
assert.strictEqual(_.includes([1, 2, NaN, NaN], NaN), true, 'Expected [1, 2, NaN] to contain NaN');
assert.strictEqual(_.includes([1, 2, Infinity], NaN), false, 'Expected [1, 2, NaN] to contain NaN');
assert.strictEqual(_.includes([1, 2, Infinity], NaN), false, 'Expected [1, 2, Infinity] to NOT contain NaN');
});

QUnit.test('includes with +- 0', function(assert) {
Expand Down

0 comments on commit 5a3a272

Please sign in to comment.