From e1cf035b9f484bfdde89b2c8907b898ac8ba86db Mon Sep 17 00:00:00 2001 From: Rachael Booth Date: Tue, 16 Jan 2024 15:43:36 +0000 Subject: [PATCH] Fix typo in test --- spec/models/validations/financial_validations_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/models/validations/financial_validations_spec.rb b/spec/models/validations/financial_validations_spec.rb index 38d0b4138..49a1c8de7 100644 --- a/spec/models/validations/financial_validations_spec.rb +++ b/spec/models/validations/financial_validations_spec.rb @@ -215,7 +215,7 @@ RSpec.describe Validations::FinancialValidations do record.ecstat1 = 1 financial_validator.validate_net_income(record) expect(record.errors["earnings"]) - .to eq(["The income's cannot be less than £90.00 per week given the household’s working situation"]) + .to eq(["The household's income cannot be less than £90.00 per week given the household’s working situation"]) end end