Skip to content

Commit 4d28007

Browse files
committed
removed console log
1 parent f9cfe69 commit 4d28007

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/core/format/Convert.spec.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,7 @@ describe('convert', () => {
236236

237237
it('utf8 text to hex with control char', () => {
238238
// Act:
239-
const test = String.fromCodePoint(0x0f) + ' Hello World!';
240-
console.log('UTF8', test);
241-
const actual = convert.utf8ToHex(test);
239+
const actual = convert.utf8ToHex(String.fromCodePoint(0x0f) + ' Hello World!');
242240

243241
// Assert:
244242
expect(actual).to.equal('0f2048656c6c6f20576f726c6421');

0 commit comments

Comments
 (0)