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,6 +1,6 @@
require 'rails_helper'
require "rails_helper"
feature 'Verification path' do
feature "Verification path" do
scenario "User is an organization" do
user = create(:user, verified_at: Time.current)
@@ -19,7 +19,7 @@ feature 'Verification path' do
visit verification_path
expect(page).to have_current_path(account_path)
expect(page).to have_content 'Your account is already verified'
expect(page).to have_content "Your account is already verified"
end
scenario "User requested a letter" do
@@ -95,7 +95,7 @@ feature 'Verification path' do
visit step_path
expect(page).to have_current_path(account_path)
expect(page).to have_content 'Your account is already verified'
expect(page).to have_content "Your account is already verified"
end
end