test: Fix path to require hello-world module
authorShigeki Ohtsu <ohtsu@iij.ad.jp>
Wed, 14 Mar 2012 02:21:14 +0000 (11:21 +0900)
committerNathan Rajlich <nathan@tootallnate.net>
Wed, 14 Mar 2012 18:00:52 +0000 (11:00 -0700)
test/addons/hello-world/test.js

index 27550a3..18008db 100644 (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());