mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
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.
This commit is contained in:
committed by
Ryan Dahl
parent
6c9ec1ac40
commit
a021db151a
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user