aboutsummaryrefslogtreecommitdiff
path: root/test/fixtures/echo.js
diff options
context:
space:
mode:
authorHerbert Vojčík <herby@mailbox.sk>2010-08-17 17:21:43 +0200
committerRyan Dahl <ry@tinyclouds.org>2010-08-17 08:41:05 -0700
commitcf2b206a8e410e677c890e941fa0bd1d7419b1a0 (patch)
tree57f20019b74a6e75f492cfe097124b5f5b467e31 /test/fixtures/echo.js
parent1872719b8cad36dd8ea3add973ea58f638fc340c (diff)
downloadandroid-node-v8-cf2b206a8e410e677c890e941fa0bd1d7419b1a0.tar.gz
android-node-v8-cf2b206a8e410e677c890e941fa0bd1d7419b1a0.tar.bz2
android-node-v8-cf2b206a8e410e677c890e941fa0bd1d7419b1a0.zip
More changes to tests so they really work under context module loader.
Plus, getting rid of test/common.js defining things in global.
Diffstat (limited to 'test/fixtures/echo.js')
-rw-r--r--test/fixtures/echo.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixtures/echo.js b/test/fixtures/echo.js
index ded07f1c6b..9274f8cf7e 100644
--- a/test/fixtures/echo.js
+++ b/test/fixtures/echo.js
@@ -1,7 +1,7 @@
common = require("../common");
assert = common.assert
-print("hello world\r\n");
+common.print("hello world\r\n");
var stdin = process.openStdin();