From 90734d9cd647dd37c624c65d919b6426d757f89a Mon Sep 17 00:00:00 2001 From: oscar-richardson-softwire Date: Mon, 12 Jan 2026 13:51:37 +0000 Subject: [PATCH] Correct test descriptions --- .../lettings/subsections/household_characteristics_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/models/form/lettings/subsections/household_characteristics_spec.rb b/spec/models/form/lettings/subsections/household_characteristics_spec.rb index 4c0b9b825..1988e2a06 100644 --- a/spec/models/form/lettings/subsections/household_characteristics_spec.rb +++ b/spec/models/form/lettings/subsections/household_characteristics_spec.rb @@ -152,7 +152,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod end end - context "with start year >= 2024" do + context "with start year 2024" do before do allow(form).to receive(:start_year_2024_or_later?).and_return(true) allow(form).to receive(:start_year_2026_or_later?).and_return(false) @@ -307,7 +307,7 @@ RSpec.describe Form::Lettings::Subsections::HouseholdCharacteristics, type: :mod end end - context "with start year >= 2025" do + context "with start year 2025" do before do allow(form).to receive(:start_year_2024_or_later?).and_return(true) allow(form).to receive(:start_year_2025_or_later?).and_return(true)