From 7e6d2f110c17b239818536f3ad01cae48642cab1 Mon Sep 17 00:00:00 2001 From: Phil Lee Date: Fri, 10 Mar 2023 15:27:07 +0000 Subject: [PATCH] copy change for LA (#1407) --- app/models/form/lettings/questions/la.rb | 2 +- app/models/form/sales/questions/property_local_authority.rb | 2 +- .../form/sales/questions/property_local_authority_spec.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/models/form/lettings/questions/la.rb b/app/models/form/lettings/questions/la.rb index e69a7216e..adafad4b9 100644 --- a/app/models/form/lettings/questions/la.rb +++ b/app/models/form/lettings/questions/la.rb @@ -3,7 +3,7 @@ class Form::Lettings::Questions::La < ::Form::Question super @id = "la" @check_answer_label = "Local Authority" - @header = "What is the local authority of the property?" + @header = "What is the property’s local authority?" @type = "select" @check_answers_card_number = 0 @hint_text = "" diff --git a/app/models/form/sales/questions/property_local_authority.rb b/app/models/form/sales/questions/property_local_authority.rb index 7b08a8a08..699a67984 100644 --- a/app/models/form/sales/questions/property_local_authority.rb +++ b/app/models/form/sales/questions/property_local_authority.rb @@ -3,7 +3,7 @@ class Form::Sales::Questions::PropertyLocalAuthority < ::Form::Question super @id = "la" @check_answer_label = "Local authority" - @header = "What is the local authority of the property?" + @header = "What is the property’s local authority?" @type = "select" end diff --git a/spec/models/form/sales/questions/property_local_authority_spec.rb b/spec/models/form/sales/questions/property_local_authority_spec.rb index 24b8933a9..a5ffe8870 100644 --- a/spec/models/form/sales/questions/property_local_authority_spec.rb +++ b/spec/models/form/sales/questions/property_local_authority_spec.rb @@ -18,7 +18,7 @@ RSpec.describe Form::Sales::Questions::PropertyLocalAuthority, type: :model do end it "has the correct header" do - expect(question.header).to eq("What is the local authority of the property?") + expect(question.header).to eq("What is the property’s local authority?") end it "has the correct check_answer_label" do