Skip to content
Prev Previous commit
test: remove console log message from string_decoder's ArrayBufferVie…
…w tests

Refs: #22562 (comment)
  • Loading branch information
BeniCheni committed Sep 11, 2018
commit 510ac79d85b9c95446d7732beda9b8c9cab6aa26
4 changes: 0 additions & 4 deletions test/parallel/test-string-decoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,6 @@ assert.strictEqual(decoder.end(), '\ufffd');
const arrayBufferViewStr = 'String for ArrayBufferView tests\n';
const inputBuffer = Buffer.from(arrayBufferViewStr.repeat(8), 'utf8');
for (const expectView of common.getArrayBufferViews(inputBuffer)) {
console.log(
'string-decoder test for',
expectView[Symbol.toStringTag]
);
assert.strictEqual(
decoder.write(expectView),
inputBuffer.toString('utf8')
Expand Down