diff --git a/spec/forms/teacher_interface/further_information_request_item_text_form_spec.rb b/spec/forms/teacher_interface/further_information_request_item_text_form_spec.rb index cb51de312..4f85d13f4 100644 --- a/spec/forms/teacher_interface/further_information_request_item_text_form_spec.rb +++ b/spec/forms/teacher_interface/further_information_request_item_text_form_spec.rb @@ -14,6 +14,7 @@ let(:response) { nil } it { is_expected.to validate_presence_of(:further_information_request_item) } + it { is_expected.to validate_presence_of(:response) } describe "#save" do subject(:save) { form.save(validate: true) } @@ -22,13 +23,6 @@ let(:response) { "" } it { is_expected.to be false } - - it "adds an error to the response" do - subject - expect(form.errors[:response]).to include( - "Please respond to the assessor's request", - ) - end end context "with a present value" do