From da1f48328cde3b3b04ec847bd3e9bf6ae269e1a1 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 8 Oct 2012 00:25:07 +0200 Subject: [PATCH] test: write to temp dir, not fixtures dir --- test/simple/test-stdout-to-file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/simple/test-stdout-to-file.js b/test/simple/test-stdout-to-file.js index 83ea4f03f6..94181ef817 100644 --- a/test/simple/test-stdout-to-file.js +++ b/test/simple/test-stdout-to-file.js @@ -30,7 +30,7 @@ var fs = require('fs'); var scriptString = path.join(common.fixturesDir, 'print-chars.js'); var scriptBuffer = path.join(common.fixturesDir, 'print-chars-from-buffer.js'); -var tmpFile = path.join(common.fixturesDir, 'stdout.txt'); +var tmpFile = path.join(common.tmpDir, 'stdout.txt'); function test(size, useBuffer, cb) { var cmd = '"' + process.argv[0] + '"' +