summaryrefslogtreecommitdiff
path: root/js/test/Common/Common.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/test/Common/Common.js')
-rw-r--r--js/test/Common/Common.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/js/test/Common/Common.js b/js/test/Common/Common.js
index 7029a61d846..d2bb087dd4f 100644
--- a/js/test/Common/Common.js
+++ b/js/test/Common/Common.js
@@ -7,26 +7,26 @@
//
// **********************************************************************
-(function(module, require, exports){
- var Ice = require("zeroc-icejs").Ice;
+(function(module, require, exports){
+ var Ice = require("ice").Ice;
var write = function(msg)
{
- process.stdout.write(msg);
+ process.stdout.write(msg);
};
var writeLine = function(msg)
{
this.write(msg + "\n");
};
-
+
var run = function(m)
{
var id = new Ice.InitializationData();
id.properties = Ice.createProperties(process.argv);
-
+
var test = m.require("./Client").__test__;
-
+
test({write: write, writeLine: writeLine}, id).exception(
function(ex, r)
{