X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=test%2Fwebsock.js;h=8446558810b9d1122a926de0d98779bced14802c;hb=5dd6480727cc1ecb12483fc4d971d73176505748;hp=1ba136b4806181e512fc1fe4781a7e158ce71590;hpb=b75bbfd9bd96ad8bb7174a768ae70cf3e8c5af7a;p=src%2Fapp-framework-binder.git diff --git a/test/websock.js b/test/websock.js index 1ba136b4..84465588 100644 --- a/test/websock.js +++ b/test/websock.js @@ -29,7 +29,7 @@ AfbWsItf = (function(){ function AfbWsItf(base, onopen, onabort, ctx) { var wl = window.location; var u = "ws://"+wl.host+"/"+base; - this.ws = new (WebSocket || MozWebSocket)(u, [ "afb1", "afb2" ]); + this.ws = new (WebSocket || MozWebSocket)(u, [ "x-afb-ws-json1" ]); this.pendings = {}; this.counter = 0; this.ctx = ctx || new AfbCtxItf();