From ed746a668b49a1f1b8d4c59c23bb49bcad90fd43 Mon Sep 17 00:00:00 2001 From: Paddy Byers Date: Mon, 9 May 2016 00:15:33 +0100 Subject: [PATCH] Fix trivial typo --- spec/realtime/channel.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/realtime/channel.test.js b/spec/realtime/channel.test.js index e6e3eaed9b..ec4d03ca2b 100644 --- a/spec/realtime/channel.test.js +++ b/spec/realtime/channel.test.js @@ -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');