From 4dc718f1d98d7e6096de4a7fb263187087a11057 Mon Sep 17 00:00:00 2001 From: Chintan Radia Date: Wed, 30 Sep 2015 23:49:15 +0530 Subject: [PATCH] minor tweaks --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index f2f7761..0aaaa3d 100644 --- a/test/test.js +++ b/test/test.js @@ -4,7 +4,7 @@ var childProcess = require('child_process'); test('Invalid file name', function (t) { t.plan(1); - childProcess.execFile('../subdownloader.js', ['randomfilename'], {cwd: __dirname}, function (err, stdout) { + childProcess.execFile('../cli.js', ['randomfilename'], {cwd: __dirname}, function (err, stdout) { t.equal('Please check if all the file name given exists or not.\n', stdout, 'Both strings are equal'); }); });