diff options
Diffstat (limited to 'features/authentication.feature')
-rw-r--r-- | features/authentication.feature | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/authentication.feature b/features/authentication.feature index 806e2b7..4dc6c78 100644 --- a/features/authentication.feature +++ b/features/authentication.feature @@ -13,12 +13,12 @@ Feature: Authentication Given I authenticated And I set headers: | Authorization | Token token="MY_AUTH_TOKEN" | - When I send a GET request to "/2/configs.json" + When I send a GET request to "/2/service" Then the response status should be "200" Scenario: Submitting an invalid token Given I authenticated And I set headers: | Authorization | Token token="InvalidToken" | - When I send a GET request to "/2/configs.json" + When I send a GET request to "/2/service" Then the response status should be "401" |