fix copy-paste errors in guidance tests

This commit is contained in:
Moritz Kobitzsch 2016-04-26 10:55:55 +02:00 committed by Patrick Niklaus
parent 62a1290043
commit 8d68d4c050
No known key found for this signature in database
GPG Key ID: E426891B5F978B1B
2 changed files with 20 additions and 20 deletions

View File

@ -194,15 +194,15 @@ Feature: Rotary
And the ways
| nodes | junction |
| ab | |
| ad | |
| bcdb | roundabout |
| ce | |
| df | |
| be | |
| cf | |
When I route I should get
| waypoints | route | turns |
| a,e | ab,ce,ce | depart,bcdb-exit-1,arrive |
| a,f | ab,df,df | depart,bcdb-exit-2,arrive |
| a,e | ad,be,be | depart,bcdb-exit-1,arrive |
| a,f | ad,cf,cf | depart,bcdb-exit-2,arrive |
Scenario: Collinear in X,Y
Given the node map
@ -213,15 +213,15 @@ Feature: Rotary
And the ways
| nodes | junction |
| ab | |
| ac | |
| bcdb | roundabout |
| ce | |
| df | |
| de | |
| bf | |
When I route I should get
| waypoints | route | turns |
| a,e | ab,ce,ce | depart,bcdb-exit-1,arrive |
| a,f | ab,df,df | depart,bcdb-exit-2,arrive |
| a,e | ac,de,de | depart,bcdb-exit-1,arrive |
| a,f | ac,bf,bf | depart,bcdb-exit-2,arrive |
Scenario: Collinear in X,Y
Given the node map

View File

@ -308,15 +308,15 @@ Feature: Basic Roundabout
And the ways
| nodes | junction |
| ab | |
| ad | |
| bcdb | roundabout |
| ce | |
| df | |
| be | |
| cf | |
When I route I should get
| waypoints | route | turns |
| a,e | ab,ce,ce | depart,roundabout-exit-1,arrive |
| a,f | ab,df,df | depart,roundabout-exit-2,arrive |
| a,e | ad,be,be | depart,roundabout-exit-1,arrive |
| a,f | ad,cf,cf | depart,roundabout-exit-2,arrive |
Scenario: Collinear in X,Y
Given the node map
@ -327,13 +327,13 @@ Feature: Basic Roundabout
And the ways
| nodes | junction |
| ab | |
| ac | |
| bcdb | roundabout |
| ce | |
| df | |
| de | |
| bf | |
When I route I should get
| waypoints | route | turns |
| a,e | ab,ce,ce | depart,roundabout-exit-1,arrive |
| a,f | ab,df,df | depart,roundabout-exit-2,arrive |
| a,e | ac,de,de | depart,roundabout-exit-1,arrive |
| a,f | ac,bf,bf | depart,roundabout-exit-2,arrive |