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:
@@ -147,7 +147,7 @@ describe "Admin settings" do
|
|||||||
visit admin_settings_path
|
visit admin_settings_path
|
||||||
find("#remote-census-tab").click
|
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)" ' \
|
'"Configure connection to remote census (SOAP)" ' \
|
||||||
'on "Features" tab.'
|
'on "Features" tab.'
|
||||||
end
|
end
|
||||||
@@ -161,7 +161,7 @@ describe "Admin settings" do
|
|||||||
expect(page).to have_content("General Information")
|
expect(page).to have_content("General Information")
|
||||||
expect(page).to have_content("Request Data")
|
expect(page).to have_content("Request Data")
|
||||||
expect(page).to have_content("Response 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)" ' \
|
'"Configure connection to remote census (SOAP)" ' \
|
||||||
'on "Features" tab.'
|
'on "Features" tab.'
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user