diff --git a/test/common/modules/shared_helper.js b/test/common/modules/shared_helper.js index f5d84a8de..e477ed851 100644 --- a/test/common/modules/shared_helper.js +++ b/test/common/modules/shared_helper.js @@ -250,9 +250,9 @@ define([ _callbackOnClose(realtime, callback) { if (realtime.connection.state === 'closed' || realtime.connection.state === 'failed') { this.recordPrivateApi('call.Platform.nextTick'); - platform.Config.nextTick(function () { - callback(); - }); + //platform.Config.nextTick(function () { + callback(); + //}); return; } @@ -264,9 +264,9 @@ define([ * happening synchronously in a publish/attach callback, which * complicates channelattach_publish_invalid etc. */ this.recordPrivateApi('call.Platform.nextTick'); - platform.Config.nextTick(function () { - realtime.close(); - }); + //platform.Config.nextTick(function () { + realtime.close(); + //}); } closeAndFinishSeveral(done, realtimeArray, e) {