Browse Source

Bug fix for test-remote-module-loading.js

Fix bug that caused test-remote-module-loading.js
to use the installed version of the http library
rather than the build one.
v0.7.4-release
Felix Geisendörfer 15 years ago
committed by Ryan Dahl
parent
commit
a021db151a
  1. 2
      test/mjsunit/test-remote-module-loading.js

2
test/mjsunit/test-remote-module-loading.js

@ -21,7 +21,7 @@ assertEquals('/moduleA.js', httpModule.httpPath());
modulesLoaded++;
var nodeBinary = process.ARGV[0];
var cmd = nodeBinary+' http://localhost:'+PORT+'/moduleB.js';
var cmd = 'NODE_PATH='+libDir+' '+nodeBinary+' http://localhost:'+PORT+'/moduleB.js';
sys
.exec(cmd)

Loading…
Cancel
Save