Skip to content

Commit

Permalink
Fix trivial typo
Browse files Browse the repository at this point in the history
  • Loading branch information
paddybyers committed May 8, 2016
1 parent 638ac4e commit ed746a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/realtime/channel.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ define(['ably', 'shared_helper', 'async'], function(Ably, helper, async) {
if(err) {
test.expect(4);
test.ok(true, 'Attach failed as expected');
test.equal(channel.errorReason.code, 40010, 'Attach error was set as the channel errorreason');
test.equal(channel.errorReason.code, 40010, 'Attach error was set as the channel errorReason');
test.equal(err.code, 40010, 'Attach error was passed to the attach callback');
setTimeout(function() {
test.ok(realtime.connection.state === 'connected', 'Client should still be connected');
Expand Down

0 comments on commit ed746a6

Please sign in to comment.