Skip to content

Commit

Permalink
Fixes tests by switching back to using == in RPS tests for consistenc…
Browse files Browse the repository at this point in the history
…y (although we should change these over for clarity down the road).
  • Loading branch information
mikermcneil committed Jul 15, 2016
1 parent cb5619a commit 2fb022a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/hook.pubsub.modelEvents.context.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ describe('pubsub :: ', function() {
socket2.on('user', function(message) {
clearTimeout(timer);
try {
assert(message.id === 1 && message.verb === 'updated' && message.data.name === 'bob', Err.badResponse(message));
assert(message.id == 1 && message.verb === 'updated' && message.data.name === 'bob', Err.badResponse(message));
}
catch (e) { return done(e); }

Expand Down

0 comments on commit 2fb022a

Please sign in to comment.