From 6dfddcbeac1c26d97ae6246e123a7dfab2c95136 Mon Sep 17 00:00:00 2001 From: JG Date: Tue, 5 Jul 2022 16:35:31 +0100 Subject: [PATCH] fixed tab nav specs --- spec/helpers/tab_nav_helper_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/helpers/tab_nav_helper_spec.rb b/spec/helpers/tab_nav_helper_spec.rb index 6aacd657f..3403ce490 100644 --- a/spec/helpers/tab_nav_helper_spec.rb +++ b/spec/helpers/tab_nav_helper_spec.rb @@ -22,7 +22,7 @@ RSpec.describe TabNavHelper do describe "#location_cell" do it "returns the location link to the postcode with optional name" do - expected_html = "#{location.postcode}\nLocation #{location.name}" + expected_html = "#{location.postcode}\nLocation #{location.name}" expect(location_cell(location)).to match(expected_html) end end