diff --git a/app/models/form/setup/questions/needs_type.rb b/app/models/form/setup/questions/needs_type.rb index bf368ef68..eb59fa675 100644 --- a/app/models/form/setup/questions/needs_type.rb +++ b/app/models/form/setup/questions/needs_type.rb @@ -4,7 +4,7 @@ class Form::Setup::Questions::NeedsType < ::Form::Question @id = "needstype" @check_answer_label = "Needs type" @header = "What is the needs type?" - @hint_text = "" + @hint_text = "General needs housing includes both self-contained and shared housing without support or specific adaptations. Supported housing can include direct access hostels, group homes, residential care and nursing homes." @type = "radio" @answer_options = ANSWER_OPTIONS @derived = true diff --git a/app/models/form/setup/questions/owning_organisation_id.rb b/app/models/form/setup/questions/owning_organisation_id.rb index 6b573e109..8024f8fbb 100644 --- a/app/models/form/setup/questions/owning_organisation_id.rb +++ b/app/models/form/setup/questions/owning_organisation_id.rb @@ -3,7 +3,7 @@ class Form::Setup::Questions::OwningOrganisationId < ::Form::Question super @id = "owning_organisation_id" @check_answer_label = "Owning organisation" - @header = "Which organisation is the owning organisation for this log?" + @header = "Which organisation owns this log?" @hint_text = "" @type = "select" @page = page diff --git a/spec/models/form/setup/questions/owning_organisation_id_spec.rb b/spec/models/form/setup/questions/owning_organisation_id_spec.rb index 5e4c5f787..d8dd418bc 100644 --- a/spec/models/form/setup/questions/owning_organisation_id_spec.rb +++ b/spec/models/form/setup/questions/owning_organisation_id_spec.rb @@ -27,7 +27,7 @@ RSpec.describe Form::Setup::Questions::OwningOrganisationId, type: :model do end it "has the correct header" do - expect(question.header).to eq("Which organisation is the owning organisation for this log?") + expect(question.header).to eq("Which organisation owns this log?") end it "has the correct check_answer_label" do