diff --git a/test/noneBy/noneBy.test.js b/test/noneBy/noneBy.test.js index 9147e5c98..f76aa990e 100644 --- a/test/noneBy/noneBy.test.js +++ b/test/noneBy/noneBy.test.js @@ -6,7 +6,7 @@ test('Testing noneBy', (t) => { //Please go to https://github.com/substack/tape t.true(typeof noneBy === 'function', 'noneBy is a Function'); t.true(noneBy([4,1,0,3], x => x < 0), 'Returns true with a predicate function'); - t.false(noneBy([0,1,2], x => x == 1), 'Returns false with predicate function'); + t.false(noneBy([0,1,2], x => x === 1), 'Returns false with predicate function'); //t.deepEqual(noneBy(args..), 'Expected'); //t.equal(noneBy(args..), 'Expected'); //t.false(noneBy(args..), 'Expected');