Use correct types

This commit is contained in:
Lukas Hirt
2020-09-09 14:02:06 +02:00
parent 170152f9f2
commit b549b9ae16

View File

@@ -44,7 +44,7 @@ Then('the status indicator of user/users {string} should be {string} on the WebU
})
When(
'the user creates a new user with username {string}, email {email} and password {password} using the WebUI',
'the user creates a new user with username {string}, email {string} and password {string} using the WebUI',
function (username, email, password) {
return client.page.accountsPage().createUser(username, email, password)
}