Browse Source

Fix typo

CLDC-3787-Autocomplete-address-search
Manny Dinssa 3 days ago
parent
commit
3bed201cf2
  1. 6
      spec/models/form/lettings/questions/uprn_selection_spec.rb
  2. 6
      spec/models/form/sales/questions/uprn_selection_spec.rb

6
spec/models/form/lettings/questions/uprn_selection_spec.rb

@ -92,7 +92,7 @@ RSpec.describe Form::Lettings::Questions::UprnSelection, type: :model do
before do
log.address_line1_input = "Address line 1"
log.postcode_full_input = nil
log.save!(valudate: false)
log.save!(validate: false)
end
it "has the correct input_playback" do
@ -104,7 +104,7 @@ RSpec.describe Form::Lettings::Questions::UprnSelection, type: :model do
before do
log.address_line1_input = nil
log.postcode_full_input = "A1 1AA"
log.save!(valudate: false)
log.save!(validate: false)
end
it "has the correct input_playback" do
@ -116,7 +116,7 @@ RSpec.describe Form::Lettings::Questions::UprnSelection, type: :model do
before do
log.address_line1_input = "Address line 1"
log.postcode_full_input = "A1 1AA"
log.save!(valudate: false)
log.save!(validate: false)
end
it "has the correct input_playback" do

6
spec/models/form/sales/questions/uprn_selection_spec.rb

@ -92,7 +92,7 @@ RSpec.describe Form::Sales::Questions::UprnSelection, type: :model do
before do
log.address_line1_input = "Address line 1"
log.postcode_full_input = nil
log.save!(valudate: false)
log.save!(validate: false)
end
it "has the correct input_playback" do
@ -104,7 +104,7 @@ RSpec.describe Form::Sales::Questions::UprnSelection, type: :model do
before do
log.address_line1_input = nil
log.postcode_full_input = "A1 1AA"
log.save!(valudate: false)
log.save!(validate: false)
end
it "has the correct input_playback" do
@ -116,7 +116,7 @@ RSpec.describe Form::Sales::Questions::UprnSelection, type: :model do
before do
log.address_line1_input = "Address line 1"
log.postcode_full_input = "A1 1AA"
log.save!(valudate: false)
log.save!(validate: false)
end
it "has the correct input_playback" do

Loading…
Cancel
Save