From 75979d7e1c6aa6f095d5cf58fa7e136cdea2b4ae Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Thu, 31 Mar 2016 17:27:30 -0700 Subject: [PATCH] Add missing arrival instruction. --- features/testbot/status.feature | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/features/testbot/status.feature b/features/testbot/status.feature index 4b9074a74..b68ba6014 100644 --- a/features/testbot/status.feature +++ b/features/testbot/status.feature @@ -14,8 +14,8 @@ Feature: Status messages When I route I should get | from | to | route | status | message | - | a | b | ab | 200 | | - | b | a | ab | 200 | | + | a | b | ab,ab | 200 | | + | b | a | ab,ab | 200 | | Scenario: No route found Given the node map @@ -30,8 +30,8 @@ Feature: Status messages When I route I should get | from | to | route | status | message | - | a | b | ab | 200 | | - | c | d | cd | 200 | | + | a | b | ab,ab | 200 | | + | c | d | cd,cd | 200 | | | a | c | | 400 | Impossible route between points | | b | d | | 400 | Impossible route between points |