diff --git a/features/player/player_registration_opens_an_account.feature b/features/player/player_registration_opens_an_account.feature index 0ceac99..ebd8837 100644 --- a/features/player/player_registration_opens_an_account.feature +++ b/features/player/player_registration_opens_an_account.feature @@ -4,7 +4,7 @@ Feature: Register a player opens an account I want to register myself as a player - Scenario: Register a player opens an account with zero coins + Scenario: Register a player opens an account with 100 coins Given I set header "HTTP_ACCEPT" with value "application/json" And I set header "CONTENT_TYPE" with value "application/json" When I send a POST request to "/players" with body: @@ -16,4 +16,4 @@ Feature: Register a player opens an account """ Then should exists accounts: | owner | amount | currency | - | 7731eaf8-7a38-4e3b-ae97-a853d8c78ee1 | 0 | coin | + | 7731eaf8-7a38-4e3b-ae97-a853d8c78ee1 | 100 | coin |