From 3bed201cf28426e1919b250b6db37a1a3fc10a70 Mon Sep 17 00:00:00 2001 From: Manny Dinssa <44172848+Dinssa@users.noreply.github.com> Date: Tue, 11 Feb 2025 11:41:56 +0000 Subject: [PATCH] Fix typo --- spec/models/form/lettings/questions/uprn_selection_spec.rb | 6 +++--- spec/models/form/sales/questions/uprn_selection_spec.rb | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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