From: Shigeki Ohtsu Date: Wed, 14 Mar 2012 02:21:14 +0000 (+0900) Subject: test: Fix path to require hello-world module X-Git-Tag: v0.7.7~95 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2fba2bf35e3d55c55590116e7b7fd6951bb1fdb;p=platform%2Fupstream%2Fnodejs.git test: Fix path to require hello-world module --- diff --git a/test/addons/hello-world/test.js b/test/addons/hello-world/test.js index 27550a3..18008db 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());