From ed8d5e0b0af3e86a1a77b2218ef764ecb368b818 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Wed, 1 Jun 2016 23:37:21 +0200 Subject: [PATCH] Add missing semicolon --- features/support/route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/route.js b/features/support/route.js index f7463f8f5..ac214fcaf 100644 --- a/features/support/route.js +++ b/features/support/route.js @@ -166,7 +166,7 @@ module.exports = function () { this.OSMIDList = (instructions) => { // OSM node IDs also come from the annotation list return instructions.legs.map(l => l.annotation.nodes.map(n => n.toString()).join(',')).join(','); - } + }; this.turnList = (instructions) => { return instructions.legs.reduce((m, v) => m.concat(v.steps), [])