Fix missing double quotes

It could be argued that the following lines use single quotes to escape
double quotes, but on the other hand, using a single quote isn't a
great benefit.
This commit is contained in:
Javi Martín
2019-09-29 17:25:47 +02:00
parent f018706e6b
commit 21f9d8e1b4

View File

@@ -147,7 +147,7 @@ describe "Admin settings" do
visit admin_settings_path
find("#remote-census-tab").click
expect(page).to have_content 'To configure remote census (SOAP) you must enable ' \
expect(page).to have_content "To configure remote census (SOAP) you must enable " \
'"Configure connection to remote census (SOAP)" ' \
'on "Features" tab.'
end
@@ -161,7 +161,7 @@ describe "Admin settings" do
expect(page).to have_content("General Information")
expect(page).to have_content("Request Data")
expect(page).to have_content("Response Data")
expect(page).not_to have_content 'To configure remote census (SOAP) you must enable ' \
expect(page).not_to have_content "To configure remote census (SOAP) you must enable " \
'"Configure connection to remote census (SOAP)" ' \
'on "Features" tab.'
end