Browse Source

refactor: typo and remove unnecessary line for this PR

pull/980/head
natdeanlewissoftwire 2 years ago
parent
commit
117dc8bfa2
  1. 1
      app/models/lettings_log.rb
  2. 2
      spec/requests/organisations_controller_spec.rb

1
app/models/lettings_log.rb

@ -38,7 +38,6 @@ class LettingsLog < Log
scope :filter_by_propcode, ->(propcode) { where("propcode ILIKE ?", "%#{propcode}%") }
scope :filter_by_postcode, ->(postcode_full) { where("REPLACE(postcode_full, ' ', '') ILIKE ?", "%#{postcode_full.delete(' ')}%") }
scope :filter_by_location_postcode, ->(postcode_full) { left_joins(:location).where("REPLACE(locations.postcode, ' ', '') ILIKE ?", "%#{postcode_full.delete(' ')}%") }
scope :filter_by_before_startdate, ->(date) { left_joins(:location).where("lettings_logs.startdate >= ?", date) }
scope :search_by, lambda { |param|
filter_by_location_postcode(param)
.or(filter_by_tenant_code(param))

2
spec/requests/organisations_controller_spec.rb

@ -59,7 +59,7 @@ RSpec.describe OrganisationsController, type: :request do
expect(page).to have_field("search", type: "search")
end
it "has hidden accebility field with description" do
it "has hidden accessibility field with description" do
expected_field = "<h2 class=\"govuk-visually-hidden\">Supported housing schemes</h2>"
expect(CGI.unescape_html(response.body)).to include(expected_field)
end

Loading…
Cancel
Save