diff --git a/spec/models/form/lettings/questions/uprn_selection_spec.rb b/spec/models/form/lettings/questions/uprn_selection_spec.rb index c3edc646e..39dbf7e13 100644 --- a/spec/models/form/lettings/questions/uprn_selection_spec.rb +++ b/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 diff --git a/spec/models/form/sales/questions/uprn_selection_spec.rb b/spec/models/form/sales/questions/uprn_selection_spec.rb index ff1b1a6dd..b8364f8ff 100644 --- a/spec/models/form/sales/questions/uprn_selection_spec.rb +++ b/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