Browse Source

Update title copy

pull/1467/head
Jack S 3 years ago
parent
commit
a7596850ce
  1. 2
      app/models/form/lettings/questions/uprn_known.rb
  2. 2
      app/models/form/sales/questions/uprn_known.rb
  3. 2
      spec/models/form/lettings/questions/uprn_known_spec.rb
  4. 2
      spec/models/form/sales/questions/uprn_known_spec.rb

2
app/models/form/lettings/questions/uprn_known.rb

@ -3,7 +3,7 @@ class Form::Lettings::Questions::UprnKnown < ::Form::Question
super
@id = "uprn_known"
@check_answer_label = "UPRN known?"
@header = "Do you know the property UPRN?"
@header = "Do you know the property's UPRN?"
@type = "radio"
@answer_options = ANSWER_OPTIONS
@hint_text = "The Unique Property Reference Number (UPRN) is a unique number system created by Ordnance Survey and used by housing providers and sectors UK-wide. For example 10010457355.<br><br>

2
app/models/form/sales/questions/uprn_known.rb

@ -3,7 +3,7 @@ class Form::Sales::Questions::UprnKnown < ::Form::Question
super
@id = "uprn_known"
@check_answer_label = "UPRN known?"
@header = "Do you know the property UPRN?"
@header = "Do you know the property's UPRN?"
@type = "radio"
@answer_options = ANSWER_OPTIONS
@hint_text = "The Unique Property Reference Number (UPRN) is a unique number system created by Ordnance Survey and used by housing providers and sectors UK-wide. For example 10010457355.<br><br>

2
spec/models/form/lettings/questions/uprn_known_spec.rb

@ -16,7 +16,7 @@ RSpec.describe Form::Lettings::Questions::UprnKnown, type: :model do
end
it "has the correct header" do
expect(question.header).to eq("Do you know the property UPRN?")
expect(question.header).to eq("Do you know the property's UPRN?")
end
it "has the correct check_answer_label" do

2
spec/models/form/sales/questions/uprn_known_spec.rb

@ -16,7 +16,7 @@ RSpec.describe Form::Sales::Questions::UprnKnown, type: :model do
end
it "has the correct header" do
expect(question.header).to eq("Do you know the property UPRN?")
expect(question.header).to eq("Do you know the property's UPRN?")
end
it "has the correct check_answer_label" do

Loading…
Cancel
Save