We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9cfe69 commit 4d28007Copy full SHA for 4d28007
test/core/format/Convert.spec.ts
@@ -236,9 +236,7 @@ describe('convert', () => {
236
237
it('utf8 text to hex with control char', () => {
238
// Act:
239
- const test = String.fromCodePoint(0x0f) + ' Hello World!';
240
- console.log('UTF8', test);
241
- const actual = convert.utf8ToHex(test);
+ const actual = convert.utf8ToHex(String.fromCodePoint(0x0f) + ' Hello World!');
242
243
// Assert:
244
expect(actual).to.equal('0f2048656c6c6f20576f726c6421');
0 commit comments