Skip to content

Commit d4cefcf

Browse files
committed
add missing semicolon
1 parent 9ed8231 commit d4cefcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-event-emitter-errors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ var assert = require('assert');
44
var EE = new EventEmitter();
55

66
assert.throws(function() {
7-
EE.emit('error', 'Accepts a string')
7+
EE.emit('error', 'Accepts a string');
88
}, /Accepts a string/);

0 commit comments

Comments
 (0)