Skip to content

Commit

Permalink
fix: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
hidaviddong committed Aug 27, 2024
1 parent 07a43f7 commit bcb414d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-whatwg-webstreams-encoding.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const kEuro = Buffer.from([0xe2, 0x82, 0xac]).toString();
assert.throws(
() => Reflect.get(TextDecoderStream.prototype, getter, {}),
{ name: 'TypeError', message: /Cannot read private member/ }
)
);
});
}

Expand All @@ -75,6 +75,6 @@ const kEuro = Buffer.from([0xe2, 0x82, 0xac]).toString();
assert.throws(
() => Reflect.get(TextDecoderStream.prototype, getter, {}),
{ name: 'TypeError', message: /Cannot read private member/ }
)
);
});
}

0 comments on commit bcb414d

Please sign in to comment.