Change single quotes to double quotes

This commit is contained in:
Julian Herrero
2019-02-01 16:48:49 +01:00
parent 4a12425987
commit 31ac8b7f55
302 changed files with 6403 additions and 6403 deletions

View File

@@ -1,27 +1,27 @@
require 'rails_helper'
require "rails_helper"
feature 'Level two verification' do
feature "Level two verification" do
scenario 'Verification with residency and sms' do
scenario "Verification with residency and sms" do
create(:geozone)
user = create(:user)
login_as(user)
visit account_path
click_link 'Verify my account'
click_link "Verify my account"
verify_residence
fill_in 'sms_phone', with: "611111111"
click_button 'Send'
fill_in "sms_phone", with: "611111111"
click_button "Send"
expect(page).to have_content 'Security code confirmation'
expect(page).to have_content "Security code confirmation"
user = user.reload
fill_in 'sms_confirmation_code', with: user.sms_confirmation_code
click_button 'Send'
fill_in "sms_confirmation_code", with: user.sms_confirmation_code
click_button "Send"
expect(page).to have_content 'Code correct'
expect(page).to have_content "Code correct"
end
context "In Spanish, with no fallbacks" do