From 4ead99046883deb80973dae4c5b11a4603c273ec Mon Sep 17 00:00:00 2001 From: Kajari Ghosh Date: Mon, 10 Dec 2018 14:14:02 -0500 Subject: [PATCH] fix linting --- features/step_definitions/distance_matrix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/distance_matrix.js b/features/step_definitions/distance_matrix.js index 0b7fd53b77d..34f559df26a 100644 --- a/features/step_definitions/distance_matrix.js +++ b/features/step_definitions/distance_matrix.js @@ -80,7 +80,7 @@ function tableParse(table, noRoute, annotation, callback) { } else { result = json[annotation].map(row => { var hashes = {}; - row.forEach((v, i) => { hashes[tableRows[0][i+1]] = parse(v) ? '' : v; }); + row.forEach((v, i) => { hashes[tableRows[0][i+1]] = parse(v) ? '' : v; }); return hashes; }); }