From e15e214747d56b757a7ba8870f57f9b7495b2922 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 30 Nov 2010 19:53:44 +0000 Subject: [PATCH] Fix test-child-process-cwd.js on Joyent servers It's symlinked to /usr/bin so this test fails. --- test/simple/test-child-process-cwd.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/simple/test-child-process-cwd.js b/test/simple/test-child-process-cwd.js index 740c178c5f..08252aac56 100644 --- a/test/simple/test-child-process-cwd.js +++ b/test/simple/test-child-process-cwd.js @@ -30,7 +30,6 @@ function testCwd(options, forCode, forData) { } // Assume these exist, and 'pwd' gives us the right directory back -testCwd( { cwd: '/bin' }, 0, '/bin' ); testCwd( { cwd: '/dev' }, 0, '/dev' ); testCwd( { cwd: '/' }, 0, '/' ); @@ -48,4 +47,4 @@ testCwd( { cwd: null }, 0 ); assert.notEqual(0, returns); process.addListener('exit', function () { assert.equal(0, returns); -}); \ No newline at end of file +});