From f87023a5f11b5b1a2c3ac65daef59d1a1639a346 Mon Sep 17 00:00:00 2001 From: kosiakkatrina <54268893+kosiakkatrina@users.noreply.github.com> Date: Thu, 26 Jan 2023 11:56:00 +0000 Subject: [PATCH] Update number of others in the property header (#1234) --- app/models/form/sales/questions/number_of_others_in_property.rb | 2 +- .../form/sales/questions/number_of_others_in_property_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/form/sales/questions/number_of_others_in_property.rb b/app/models/form/sales/questions/number_of_others_in_property.rb index 136cabcfb..3eb1f34e6 100644 --- a/app/models/form/sales/questions/number_of_others_in_property.rb +++ b/app/models/form/sales/questions/number_of_others_in_property.rb @@ -3,7 +3,7 @@ class Form::Sales::Questions::NumberOfOthersInProperty < ::Form::Question super @id = "hholdcount" @check_answer_label = "Number of other people living in the property" - @header = "Besides the buyers, how many other people live in the property?" + @header = "Besides the buyer(s), how many other people live or will live in the property?" @type = "numeric" @hint_text = "You can provide details for a maximum of 4 other people." @width = 2 diff --git a/spec/models/form/sales/questions/number_of_others_in_property_spec.rb b/spec/models/form/sales/questions/number_of_others_in_property_spec.rb index 0742a98b6..81c49770a 100644 --- a/spec/models/form/sales/questions/number_of_others_in_property_spec.rb +++ b/spec/models/form/sales/questions/number_of_others_in_property_spec.rb @@ -16,7 +16,7 @@ RSpec.describe Form::Sales::Questions::NumberOfOthersInProperty, type: :model do end it "has the correct header" do - expect(question.header).to eq("Besides the buyers, how many other people live in the property?") + expect(question.header).to eq("Besides the buyer(s), how many other people live or will live in the property?") end it "has the correct check_answer_label" do