From 21f9d8e1b4a8a56ebda5e8fcd43da69c5c1a96e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Sun, 29 Sep 2019 17:25:47 +0200 Subject: [PATCH] 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. --- spec/features/admin/settings_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/features/admin/settings_spec.rb b/spec/features/admin/settings_spec.rb index f4382fc44..72096e02c 100644 --- a/spec/features/admin/settings_spec.rb +++ b/spec/features/admin/settings_spec.rb @@ -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