summaryrefslogtreecommitdiff
path: root/test/simple/test-executable-path.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-executable-path.js')
-rw-r--r--test/simple/test-executable-path.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/simple/test-executable-path.js b/test/simple/test-executable-path.js
index 5d358da93d..73948b66f1 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, '..', '..',
- 'build', 'Debug', 'node'));
+ 'out', 'Debug', 'node'));
var defaultPath = path.normalize(path.join(__dirname, '..', '..',
- 'build', 'Release', 'node'));
+ 'out', 'Release', 'node'));
console.error('debugPath: ' + debugPath);
console.error('defaultPath: ' + defaultPath);