From 1762ba37ca810d44933ae850fd4fd00fd16be732 Mon Sep 17 00:00:00 2001 From: Scott Blomquist Date: Thu, 28 Feb 2013 09:18:12 -0800 Subject: [PATCH] test: add cleanup to long path test --- test/simple/test-fs-long-path.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/simple/test-fs-long-path.js b/test/simple/test-fs-long-path.js index eac58f68e5b..82691556a6e 100644 --- a/test/simple/test-fs-long-path.js +++ b/test/simple/test-fs-long-path.js @@ -47,5 +47,6 @@ fs.writeFile(fullPath, 'ok', function(err) { }); process.on('exit', function() { + fs.unlinkSync(fullPath); assert.equal(2, successes); });