test: Fix path to require hello-world module

This commit is contained in:
Shigeki Ohtsu 2012-03-14 11:21:14 +09:00 committed by Nathan Rajlich
parent 35043ad8ac
commit d2fba2bf35

View File

@ -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());