fix tests to reflect proper rounding of travel times

This commit is contained in:
Dennis Luxen
2014-04-25 13:23:27 +02:00
parent 2ec952032a
commit ca6515c58a
5 changed files with 17 additions and 17 deletions
+6 -6
View File
@@ -1,20 +1,20 @@
@routing @car @speed
@routing @car @speed
Feature: Car - speeds
Background:
Given the profile "car"
And a grid size of 1000 meters
Scenario: Car - speed of various way types
Then routability should be
| highway | oneway | bothw |
| motorway | no | 90 km/h |
| motorway_link | no | 75 km/h |
| trunk | no | 85 km/h |
| trunk_link | no | 70 km/h |
| primary | no | 65 km/h |
| trunk | no | 84 km/h |
| trunk_link | no | 69 km/h |
| primary | no | 64 km/h |
| primary_link | no | 60 km/h |
| secondary | no | 55 km/h |
| secondary | no | 54 km/h |
| secondary_link | no | 50 km/h |
| tertiary | no | 40 km/h |
| tertiary_link | no | 30 km/h |