diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-10-22 10:02:30 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-10-22 10:02:30 -0700 |
commit | 604f4fdf8c40e3039e1d1821a744c48e60df7a06 (patch) | |
tree | 59e0a20c882a9c354b8b5903da159f776d003dd1 /test/simple/test-fs-write-stream.js | |
parent | 92c5634cbda0c339719ff1ed2d966fa594d192e5 (diff) | |
download | node-new-604f4fdf8c40e3039e1d1821a744c48e60df7a06.tar.gz |
Write write.txt into the tmpdir
Diffstat (limited to 'test/simple/test-fs-write-stream.js')
-rw-r--r-- | test/simple/test-fs-write-stream.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/simple/test-fs-write-stream.js b/test/simple/test-fs-write-stream.js index 14ad62e0ba..a604107c5f 100644 --- a/test/simple/test-fs-write-stream.js +++ b/test/simple/test-fs-write-stream.js @@ -4,7 +4,7 @@ assert = common.assert var path = require('path'), fs = require('fs'); -var file = path.join(common.fixturesDir, "write.txt"); +var file = path.join(common.tmpDir, "write.txt"); (function() { var stream = fs.WriteStream(file), |