Author: ygrego Date: 2015-04-01 13:49:05 +0000 (Wed, 01 Apr 2015) New Revision: 1022 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1022 Log: Deletion of transition and the last one targets the UNREALIZED state. Modified: oipf/js/test/VideoBroadcastTest.js Modified: oipf/js/test/VideoBroadcastTest.js =================================================================== --- oipf/js/test/VideoBroadcastTest.js 2015-04-01 13:46:13 UTC (rev 1021) +++ oipf/js/test/VideoBroadcastTest.js 2015-04-01 13:49:05 UTC (rev 1022) @@ -693,7 +693,6 @@ this.vidBroadObj.bindToCurrentChannel(); }, - testSetChannelInConnectingWithNull: function(resolve, reject) { var self = this; @@ -701,8 +700,7 @@ self.vidBroadObj.setChannel(null); }); - this.addTransition(this.CONNECTING, this.CONNECTING); - this.addTransition(this.CONNECTING, this.PRESENTING, resolve); + this.addTransition(this.CONNECTING, this.UNREALIZED, resolve); this.vidBroadObj.bindToCurrentChannel(); },