From 9e472ed83c8932c8ef2f0cfc428336e30a491c80 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Sat, 13 Jan 2018 23:00:05 +0000 Subject: [PATCH] Fix global leak in watch tests (again) --- test/nodes/core/io/23-watch_spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/nodes/core/io/23-watch_spec.js b/test/nodes/core/io/23-watch_spec.js index ac1f6dcd7..e68f7e683 100644 --- a/test/nodes/core/io/23-watch_spec.js +++ b/test/nodes/core/io/23-watch_spec.js @@ -34,10 +34,10 @@ describe('watch Node', function() { count++; return { dirToWatch:dirToWatch, - file0ToWatch:path.join(dirToWatch, "file0.txt");, - file1ToWatch:path.join(dirToWatch, "file1.txt");, - subDirToWatch:path.join(dirToWatch, "subdir");, - file2ToWatch:path.join(subDirToWatch, "file2.txt"); + file0ToWatch:path.join(dirToWatch, "file0.txt"), + file1ToWatch:path.join(dirToWatch, "file1.txt"), + subDirToWatch:path.join(dirToWatch, "subdir"), + file2ToWatch:path.join(subDirToWatch, "file2.txt") } }