Skip to content

Commit ab72389

Browse files
committed
Use GitHub ref style
1 parent ddc0d08 commit ab72389

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

example/src/tests/utils/encoding_tests.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ test(SUITE, '[Node.js] Test single base64 char encodes as 0.', () => {
431431

432432
test(
433433
SUITE,
434-
'[Node.js] Return empty output for invalid base64 with repeated leading padding (nodejs/#3496)',
434+
'[Node.js] Return empty output for invalid base64 with repeated leading padding (nodejs/node#3496)',
435435
() => {
436436
expect(toU8(stringToBuffer('=bad'.repeat(1e4), 'base64'))).to.deep.equal(
437437
new Uint8Array([]),
@@ -441,7 +441,7 @@ test(
441441

442442
test(
443443
SUITE,
444-
'[Node.js] Ignore trailing whitespace in base64 input (nodejs/#11987)',
444+
'[Node.js] Ignore trailing whitespace in base64 input (nodejs/node#11987)',
445445
() => {
446446
expect(toU8(stringToBuffer('w0 ', 'base64'))).to.deep.equal(
447447
toU8(stringToBuffer('w0', 'base64')),
@@ -451,7 +451,7 @@ test(
451451

452452
test(
453453
SUITE,
454-
'[Node.js] Ignore leading whitespace in base64 input (nodejs/#13657)',
454+
'[Node.js] Ignore leading whitespace in base64 input (nodejs/node#13657)',
455455
() => {
456456
expect(toU8(stringToBuffer(' YWJvcnVtLg', 'base64'))).to.deep.equal(
457457
toU8(stringToBuffer('YWJvcnVtLg', 'base64')),

0 commit comments

Comments
 (0)