summaryrefslogtreecommitdiff
path: root/test/addons/hello-world
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@iij.ad.jp>2012-03-14 11:21:14 +0900
committerNathan Rajlich <nathan@tootallnate.net>2012-03-14 11:00:52 -0700
commitd2fba2bf35e3d55c55590116e7b7fd6951bb1fdb (patch)
tree889e9c3f7dc701c2987b806330d1dd3a4451fdbf /test/addons/hello-world
parent35043ad8ac77f568755fff6c8aea4f41f531330d (diff)
downloadandroid-node-v8-d2fba2bf35e3d55c55590116e7b7fd6951bb1fdb.tar.gz
android-node-v8-d2fba2bf35e3d55c55590116e7b7fd6951bb1fdb.tar.bz2
android-node-v8-d2fba2bf35e3d55c55590116e7b7fd6951bb1fdb.zip
test: Fix path to require hello-world module
Diffstat (limited to 'test/addons/hello-world')
-rw-r--r--test/addons/hello-world/test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/addons/hello-world/test.js b/test/addons/hello-world/test.js
index 27550a3864..18008db581 100644
--- a/test/addons/hello-world/test.js
+++ b/test/addons/hello-world/test.js
@@ -1,4 +1,4 @@
var assert = require('assert');
-var binding = require('./out/Release/binding');
+var binding = require('./build/Release/binding');
assert.equal('world', binding.hello());
console.log('binding.hello() =', binding.hello());