Fix Layout/LineLength

Ha, `not_to have` is one character longer..
This commit is contained in:
David Cook
2024-03-04 12:54:23 +11:00
parent ea0967e22e
commit 3e0d54f5f8

View File

@@ -64,9 +64,11 @@ describe "Cookies", caching: true do
scenario "it is not showing" do
Spree::Config[:cookies_consent_banner_toggle] = false
visit root_path
expect(page).not_to have_content 'This site uses cookies in order to make your navigation ' \
'frictionless and secure, and to help us understand how ' \
'you use it in order to improve the features we offer.'
expect(page).not_to have_content(
'This site uses cookies in order to make your navigation ' \
'frictionless and secure, and to help us understand how ' \
'you use it in order to improve the features we offer.'
)
end
end
end