Browse Source

Fix lint

pull/312/head
Kat 3 years ago
parent
commit
63c32f6c0d
  1. 5
      spec/models/case_log_spec.rb

5
spec/models/case_log_spec.rb

@ -104,6 +104,7 @@ RSpec.describe CaseLog do
it "validates tenancy type" do
expect(validator).to receive(:validate_fixed_term_tenancy)
expect(validator).to receive(:validate_other_tenancy_type)
expect(validator).to receive(:validate_tenancy_type)
end
it "validates the previous postcode" do
@ -162,10 +163,6 @@ RSpec.describe CaseLog do
expect(validator).to receive(:validate_accessibility_requirements)
end
it "validates tenancy type" do
expect(validator).to receive(:validate_tenancy_type)
end
it "validates referral" do
expect(validator).to receive(:validate_referral)
end

Loading…
Cancel
Save