diff --git a/spec/models/form/lettings/questions/housing_provider_spec.rb b/spec/models/form/lettings/questions/housing_provider_spec.rb index 45415bb31..5363a0227 100644 --- a/spec/models/form/lettings/questions/housing_provider_spec.rb +++ b/spec/models/form/lettings/questions/housing_provider_spec.rb @@ -86,7 +86,7 @@ RSpec.describe Form::Lettings::Questions::HousingProvider, type: :model do context "when support" do let(:user) { create(:user, :support) } - it "is not hiddes in check answers" do + it "is not hidden in check answers" do expect(question.hidden_in_check_answers?(nil, user)).to be false end end diff --git a/spec/models/form/lettings/questions/managing_organisation_spec.rb b/spec/models/form/lettings/questions/managing_organisation_spec.rb index 5b356257d..e045601bf 100644 --- a/spec/models/form/lettings/questions/managing_organisation_spec.rb +++ b/spec/models/form/lettings/questions/managing_organisation_spec.rb @@ -153,7 +153,7 @@ RSpec.describe Form::Lettings::Questions::ManagingOrganisation, type: :model do context "when user not provided" do let(:user) { create(:user, :support) } - it "is not hiddes in check answers" do + it "is not hidden in check answers" do expect(question.hidden_in_check_answers?(nil)).to be true end end