Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlucas committed May 7, 2015
1 parent 9ed8231 commit d4cefcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-event-emitter-errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ var assert = require('assert');
var EE = new EventEmitter();

assert.throws(function() {
EE.emit('error', 'Accepts a string')
EE.emit('error', 'Accepts a string');
}, /Accepts a string/);

0 comments on commit d4cefcf

Please sign in to comment.