Skip to content

Commit

Permalink
Fix spelling error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcorgan committed Apr 18, 2017
1 parent 385d1b2 commit 45eda6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ test('unsubscribes single event with name and callback which was subscribed once
t.end();
});

test('exports and instance', function (t) {
t.ok(emitter, 'exports and instance')
test('exports an instance', function (t) {
t.ok(emitter, 'exports an instance')
t.ok(emitter instanceof Emitter, 'an instance of the Emitter class');
t.end();
});

0 comments on commit 45eda6c

Please sign in to comment.