From b98888970751ec07c5d138f4226cd150cd052938 Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Fri, 2 Nov 2018 16:59:56 -0700 Subject: [PATCH] Linting fix on test helper code. --- 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 aac4f3183..0b7fd53b7 100644 --- a/features/step_definitions/distance_matrix.js +++ b/features/step_definitions/distance_matrix.js @@ -66,7 +66,7 @@ function tableParse(table, noRoute, annotation, callback) { var result = {}; if (annotation === 'estimated_cells') { - result = table.raw().map(row => row.map(cell => '')); + result = table.raw().map(row => row.map(() => '')); json[annotation].forEach(pair => { result[pair[0]+1][pair[1]+1] = 'Y'; });