Skip to content

Commit c0006c9

Browse files
committed
Fix missing semi.
1 parent 59c2d93 commit c0006c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/versioning.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ test('should detect abi for node-webkit runtime', (t) => {
9292

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

103103
test('should throw when custom node target is not semver', (t) => {
104104
try {
105-
versioning.get_runtime_abi('node', '1.2.3.4')
105+
versioning.get_runtime_abi('node', '1.2.3.4');
106106
} catch (e) {
107107
const expectedMessage = 'Unknown target version: 1.2.3.4';
108108
t.equal(e.message, expectedMessage);

0 commit comments

Comments
 (0)