Fix spec failure
This commit is contained in:
parent
fa197ad583
commit
148014f99a
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ describe('nativeImage module', () => {
|
|||
assert.equal(nsimage.length, 8);
|
||||
|
||||
// If all bytes are null, that's Bad
|
||||
assert.equal(!!nsimage.reduce((acc,x) => acc || (x != 0)), true);
|
||||
assert.equal(nsimage.reduce((acc,x) => acc || (x != 0), false), true);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue