From 45d3e938113b950033c2da767458b0333b6bb5e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Sat, 25 Apr 2020 10:12:11 +0100 Subject: [PATCH] Use object shorthand --- test/clone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/clone.js b/test/clone.js index 76f2af9..8c010ce 100644 --- a/test/clone.js +++ b/test/clone.js @@ -53,7 +53,7 @@ test('lint repos', function (t) { series(Object.keys(MODULES).map(function (name) { return function (cb) { var cwd = path.join(TMP, name) - spawn('node', [SEMISTANDARD], { cwd: cwd }, function (err) { + spawn('node', [SEMISTANDARD], { cwd }, function (err) { t.error(err, name) cb(null) })