summaryrefslogtreecommitdiff
path: root/js/test/Ice/acm/Client.js
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-12-14 14:02:37 -0500
committerBernard Normier <bernard@zeroc.com>2016-12-14 14:02:37 -0500
commit006bdff840ed5c834a6640c1690844d38cdafff4 (patch)
tree8116d1c1bb38b4fc8dc6c6178b0353f1029c0e07 /js/test/Ice/acm/Client.js
parentFixes to JS test scripts and more work on iOS C++ controller (diff)
downloadice-006bdff840ed5c834a6640c1690844d38cdafff4.tar.bz2
ice-006bdff840ed5c834a6640c1690844d38cdafff4.tar.xz
ice-006bdff840ed5c834a6640c1690844d38cdafff4.zip
Removed or replaced double underscores in Ice for JavaScript
Diffstat (limited to 'js/test/Ice/acm/Client.js')
-rw-r--r--js/test/Ice/acm/Client.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/test/Ice/acm/Client.js b/js/test/Ice/acm/Client.js
index 2c36927ce5f..8560dd16941 100644
--- a/js/test/Ice/acm/Client.js
+++ b/js/test/Ice/acm/Client.js
@@ -480,9 +480,9 @@
var c = Ice.initialize(id);
return Promise.try(() => allTests(out, c)).finally(() => c.destroy());
};
- exports.__test__ = run;
- exports.__runServer__ = true;
+ exports._test = run;
+ exports._runServer = true;
}
(typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? module : undefined,
- typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? require : this.Ice.__require,
+ typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? require : this.Ice._require,
typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? exports : this));