Remove console.log

This commit is contained in:
dapplion 2020-11-30 11:49:47 +00:00
parent 2c938ddeed
commit 3004076a4a
1 changed files with 0 additions and 1 deletions

View File

@ -17,7 +17,6 @@ describe("helpers / bytes", () => {
for (const {hex, isZero} of testCases) { for (const {hex, isZero} of testCases) {
it(`${hex} isZero = ${isZero}`, () => { it(`${hex} isZero = ${isZero}`, () => {
const bytes = hexToBytesNode(hex); const bytes = hexToBytesNode(hex);
console.log(bytes);
expect(isZeroUint8Array(bytes)).to.equal(isZero); expect(isZeroUint8Array(bytes)).to.equal(isZero);
}); });
} }