From b549b9ae1638a93c97bdfde6940d81aa1d64a48d Mon Sep 17 00:00:00 2001 From: Lukas Hirt Date: Wed, 9 Sep 2020 14:02:06 +0200 Subject: [PATCH] Use correct types --- ui/tests/acceptance/stepDefinitions/accountsContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/tests/acceptance/stepDefinitions/accountsContext.js b/ui/tests/acceptance/stepDefinitions/accountsContext.js index a8bc73af65..26a2112796 100644 --- a/ui/tests/acceptance/stepDefinitions/accountsContext.js +++ b/ui/tests/acceptance/stepDefinitions/accountsContext.js @@ -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) }