From 5d9fc83db4d69017373dc9444f785906af2c39ce Mon Sep 17 00:00:00 2001 From: karenzshea Date: Mon, 3 Oct 2016 13:15:39 -0400 Subject: [PATCH] adjust test cases that specify coords without leading 0 --- features/car/traffic_speeds.feature | 30 +++++++++---------- .../edge-weight-updates-over-factor.feature | 2 +- features/raster/weights.feature | 8 ++--- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/features/car/traffic_speeds.feature b/features/car/traffic_speeds.feature index c26c69599..24e2e7f59 100644 --- a/features/car/traffic_speeds.feature +++ b/features/car/traffic_speeds.feature @@ -7,12 +7,12 @@ Feature: Traffic - speeds Given the node locations | node | lat | lon | | a | 0.1 | 0.1 | - | b | .05 | 0.1 | + | b | 0.05 | 0.1 | | c | 0.0 | 0.1 | - | d | .05 | .03 | - | e | .05 | .066 | - | f | .075 | .066 | - | g | .075 | 0.1 | + | d | 0.05 | 0.03 | + | e | 0.05 | 0.066 | + | f | 0.075 | 0.066 | + | g | 0.075 | 0.1 | And the ways | nodes | highway | | ab | primary | @@ -50,12 +50,12 @@ Feature: Traffic - speeds Given the node locations | node | lat | lon | | a | 0.1 | 0.1 | - | b | .05 | 0.1 | + | b | 0.05 | 0.1 | | c | 0.0 | 0.1 | - | d | .05 | .03 | - | e | .05 | .066 | - | f | .075 | .066 | - | g | .075 | 0.1 | + | d | 0.05 | 0.03 | + | e | 0.05 | 0.066 | + | f | 0.075 | 0.066 | + | g | 0.075 | 0.1 | | h | 2.075 | 19.1 | And the ways | nodes | highway | @@ -93,12 +93,12 @@ Feature: Traffic - speeds Given the node locations | node | lat | lon | | a | 0.1 | 0.1 | - | b | .05 | 0.1 | + | b | 0.05 | 0.1 | | c | 0.0 | 0.1 | - | d | .05 | .03 | - | e | .05 | .066 | - | f | .075 | .066 | - | g | .075 | 0.1 | + | d | 0.05 | 0.03 | + | e | 0.05 | 0.066 | + | f | 0.075 | 0.066 | + | g | 0.075 | 0.1 | | h | 1.075 | 10.1 | And the ways | nodes | highway | diff --git a/features/options/contract/edge-weight-updates-over-factor.feature b/features/options/contract/edge-weight-updates-over-factor.feature index 538f876cc..85e5fa8fe 100644 --- a/features/options/contract/edge-weight-updates-over-factor.feature +++ b/features/options/contract/edge-weight-updates-over-factor.feature @@ -5,7 +5,7 @@ Feature: osrm-contract command line option: edge-weight-updates-over-factor Given the node locations | node | lat | lon | | a | 0.1 | 0.1 | - | b | .05 | 0.1 | + | b | 0.05 | 0.1 | | c | 0.3 | 0.1 | And the ways | nodes | highway | diff --git a/features/raster/weights.feature b/features/raster/weights.feature index 1c03bdc1b..de4ce4366 100644 --- a/features/raster/weights.feature +++ b/features/raster/weights.feature @@ -5,11 +5,11 @@ Feature: Raster - weights Given the node locations | node | lat | lon | | a | 0.1 | 0.1 | - | b | .05 | 0.1 | + | b | 0.05 | 0.1 | | c | 0.0 | 0.1 | - | d | .05 | .03 | - | e | .05 | .066 | - | f | .075 | .066 | + | d | 0.05 | 0.03 | + | e | 0.05 | 0.066 | + | f | 0.075 | 0.066 | And the ways | nodes | highway | | ab | primary |