Skip to content

Commit

Permalink
Fix missing semi.
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilan committed May 4, 2022
1 parent 59c2d93 commit c0006c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/versioning.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ test('should detect abi for node-webkit runtime', (t) => {

test('should throw when custom node target is not found in abi_crosswalk file', (t) => {
try {
versioning.get_runtime_abi('node', '123456789.0.0')
versioning.get_runtime_abi('node', '123456789.0.0');
} catch (e) {
const expectedMessage = 'Unsupported target version: 123456789.0.0';
t.equal(e.message, expectedMessage);
Expand All @@ -102,7 +102,7 @@ test('should throw when custom node target is not found in abi_crosswalk file',

test('should throw when custom node target is not semver', (t) => {
try {
versioning.get_runtime_abi('node', '1.2.3.4')
versioning.get_runtime_abi('node', '1.2.3.4');
} catch (e) {
const expectedMessage = 'Unknown target version: 1.2.3.4';
t.equal(e.message, expectedMessage);
Expand Down

0 comments on commit c0006c9

Please sign in to comment.