From ab0b1f9f13ed507c6cafbfb4fe5164a7e470a9a3 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 8 Aug 2011 17:35:26 -0700 Subject: [PATCH] Fix test-executable-path --- test/simple/test-executable-path.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/simple/test-executable-path.js b/test/simple/test-executable-path.js index 73948b66f17..aa07d1321d7 100644 --- a/test/simple/test-executable-path.js +++ b/test/simple/test-executable-path.js @@ -26,9 +26,9 @@ var path = require('path'); var isDebug = (process.version.indexOf('debug') >= 0); var debugPath = path.normalize(path.join(__dirname, '..', '..', - 'out', 'Debug', 'node')); + 'build', 'debug', 'node')); var defaultPath = path.normalize(path.join(__dirname, '..', '..', - 'out', 'Release', 'node')); + 'build', 'default', 'node')); console.error('debugPath: ' + debugPath); console.error('defaultPath: ' + defaultPath);