From b18d1a79f48b79ebcc4980883bc5a591142ddcae Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 13 Oct 2014 03:29:27 +1100 Subject: [PATCH] rename build to more meaningful buildTest --- test/bin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bin.js b/test/bin.js index eca3881e55..3183d3c6ef 100644 --- a/test/bin.js +++ b/test/bin.js @@ -67,7 +67,7 @@ var assertTest = function (stdout, stderr, opts) { }); }; -var build = function (binName, testName, opts) { +var buildTest = function (binName, testName, opts) { var binLoc = path.normalize(__dirname + "/../bin/" + binName); return function (callback) { @@ -146,7 +146,7 @@ _.each(fs.readdirSync(fixtureLoc), function (binName) { opts.outFiles = readDir(testLoc + "/out-files"); opts.inFiles = readDir(testLoc + "/in-files"); - test(testName, build(binName, testName, opts)); + test(testName, buildTest(binName, testName, opts)); }); }); });