Used kebab case for example table header name (#8676)

This commit is contained in:
Prarup Gurung
2024-03-18 17:55:29 +05:45
committed by GitHub
parent 35b9ea7cb6
commit ebaa59637e
4 changed files with 23 additions and 23 deletions

View File

@@ -9,14 +9,14 @@ Feature: add user
Scenario Outline: admin creates a user
Given using OCS API version "<ocs_api_version>"
Given using OCS API version "<ocs-api-version>"
And user "brand-new-user" has been deleted
When the administrator sends a user creation request for user "brand-new-user" password "%alt1%" using the provisioning API
Then the OCS status code should be "<ocs_status_code>"
Then the OCS status code should be "<ocs-status-code>"
And the HTTP status code should be "200"
And user "brand-new-user" should exist
And user "brand-new-user" should be able to access a skeleton file
Examples:
| ocs_api_version | ocs_status_code |
| ocs-api-version | ocs-status-code |
| 1 | 100 |
| 2 | 200 |