From 6c4ae1d2c13d19b0e7675e7f78da1236d60d0829 Mon Sep 17 00:00:00 2001 From: Gaetan Craig-Riou Date: Tue, 24 Mar 2026 09:29:19 +1100 Subject: [PATCH] Fix spec --- spec/views/registration/steps/_details.html.haml_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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