From c630128281fbb57f7d3132ed46b77ad6546cf3e1 Mon Sep 17 00:00:00 2001 From: Jeff Miccolis Date: Wed, 30 Mar 2016 09:46:19 -0400 Subject: [PATCH] make eslint happy --- features/support/route.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/features/support/route.js b/features/support/route.js index cea93664d..71059e964 100644 --- a/features/support/route.js +++ b/features/support/route.js @@ -138,13 +138,13 @@ module.exports = function () { return instructions.legs.reduce((m, v) => m.concat(v.steps), []) .map(v => { switch (v.maneuver.type) { - case 'depart': - case 'arrive': - return v.maneuver.type; - case 'roundabout': - return 'roundabout-exit-' + v.maneuver.exit; - default: - return v.maneuver.modifier + case 'depart': + case 'arrive': + return v.maneuver.type; + case 'roundabout': + return 'roundabout-exit-' + v.maneuver.exit; + default: + return v.maneuver.modifier; } }) .join(',');