mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-07-11 16:15:22 -04:00
Fix typo in step definition
This commit is contained in:
@@ -15,5 +15,5 @@ Feature: Accounts
|
||||
And user "user1" has logged in using the webUI
|
||||
When the user browses to the accounts page
|
||||
Then user "einstein" should be displayed in the accounts list on the WebUI
|
||||
When the users changes the role of user "einstein" to "Admin" using the WebUI
|
||||
When the user changes the role of user "einstein" to "Admin" using the WebUI
|
||||
Then the displayed role of user "einstein" should be "Admin" on the WebUI
|
||||
|
||||
@@ -12,7 +12,7 @@ Then('user {string} should be displayed in the accounts list on the WebUI', asyn
|
||||
return assert.strictEqual(userListed, username)
|
||||
})
|
||||
|
||||
When('the users changes the role of user {string} to {string} using the WebUI', function (username, role) {
|
||||
When('the user changes the role of user {string} to {string} using the WebUI', function (username, role) {
|
||||
return client.page.accountsPage().selectRole(username, role)
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user