diff --git a/spec/views/registration/steps/_details.html.haml_spec.rb b/spec/views/registration/steps/_details.html.haml_spec.rb index e1c5b4332d..1dc9e1a554 100644 --- a/spec/views/registration/steps/_details.html.haml_spec.rb +++ b/spec/views/registration/steps/_details.html.haml_spec.rb @@ -6,13 +6,13 @@ RSpec.describe "registration/steps/_details.html.haml" do it "uses Google Maps when it is enabled" do allow(view).to receive_messages(using_google_maps?: true) - is_expected.to match // + is_expected.to match // end it "uses OpenStreetMap when it is enabled" do ContentConfig.open_street_map_enabled = true allow(view).to receive_messages(using_google_maps?: false) - is_expected.to match /
/ + is_expected.to match /
/ end end