Linting fix on test helper code.

This commit is contained in:
Daniel Patterson 2018-11-02 16:59:56 -07:00 committed by Kajari Ghosh
parent bd6c4d1a5f
commit b988889707

View File

@ -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';
});