Skip to content

Commit

Permalink
Bug fix for test-remote-module-loading.js
Browse files Browse the repository at this point in the history
Fix bug that caused test-remote-module-loading.js
to use the installed version of the http library
rather than the build one.
  • Loading branch information
felixge authored and ry committed Nov 7, 2009
1 parent 6c9ec1a commit a021db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/mjsunit/test-remote-module-loading.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a021db1

Please sign in to comment.