X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=test%2Fwebsock.js;h=8446558810b9d1122a926de0d98779bced14802c;hb=6ea1d50ab6571551e1d0379940349911956c97ee;hp=1ba136b4806181e512fc1fe4781a7e158ce71590;hpb=54b2652e94cfa7840dbebcba46edd5459e7c6e86;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();