aboutsummaryrefslogtreecommitdiffstats
path: root/test/monitoring
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-09-01 09:56:41 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-09-05 18:37:25 +0200
commite0ee638f2fed216a0b1b0d497d586917c805816e (patch)
treea134186588930db4037347f0b09df86091e4f712 /test/monitoring
parent6790479e981d885449777ed430f30ad5bf77aa45 (diff)
AFB.js: fix bug (minor)
Change-Id: I37ee5f599cf49a6a1c6b1e27cf3fcdd29b280c4a Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'test/monitoring')
-rw-r--r--test/monitoring/AFB.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/monitoring/AFB.js b/test/monitoring/AFB.js
index 30fb9826..59e68abc 100644
--- a/test/monitoring/AFB.js
+++ b/test/monitoring/AFB.js
@@ -66,7 +66,7 @@ var AFB_websocket;
var PROTO1 = "x-afb-ws-json1";
- AFB_websocket = function(onopen, onabort) {
+ AFB_websocket = function(on_open, on_abort) {
var u = urlws;
if (AFB_context.token) {
u = u + '?x-afb-token=' + AFB_context.token;
@@ -82,8 +82,8 @@ var AFB_websocket;
this.ws.onerror = onerror.bind(this);
this.ws.onclose = onclose.bind(this);
this.ws.onmessage = onmessage.bind(this);
- this.onopen = onopen;
- this.onabort = onabort;
+ this.onopen = on_open;
+ this.onabort = on_abort;
}
function onerror(event) {