Change single quotes to double quotes
This commit is contained in:
@@ -13,12 +13,12 @@ module CommonActions
|
||||
include Verifications
|
||||
include Votes
|
||||
|
||||
def fill_in_signup_form(email = 'manuela@consul.dev', password = 'judgementday')
|
||||
fill_in 'user_username', with: "Manuela Carmena #{rand(99999)}"
|
||||
fill_in 'user_email', with: email
|
||||
fill_in 'user_password', with: password
|
||||
fill_in 'user_password_confirmation', with: password
|
||||
check 'user_terms_of_service'
|
||||
def fill_in_signup_form(email = "manuela@consul.dev", password = "judgementday")
|
||||
fill_in "user_username", with: "Manuela Carmena #{rand(99999)}"
|
||||
fill_in "user_email", with: email
|
||||
fill_in "user_password", with: password
|
||||
fill_in "user_password_confirmation", with: password
|
||||
check "user_terms_of_service"
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user