Browse Source

Fix lint errors

pull/2476/head
Rachael Booth 2 years ago
parent
commit
a74fb09ac0
  1. 4
      spec/services/bulk_upload/lettings/year2024/row_parser_spec.rb
  2. 4
      spec/services/bulk_upload/sales/year2024/row_parser_spec.rb

4
spec/services/bulk_upload/lettings/year2024/row_parser_spec.rb

@ -1590,7 +1590,7 @@ RSpec.describe BulkUpload::Lettings::Year2024::RowParser do
context "and an address can be found with a high enough match rating" do context "and an address can be found with a high enough match rating" do
before do before do
stub_request(:get, /api\.os\.uk\/search\/places\/v1\/find/) stub_request(:get, /api\.os\.uk\/search\/places\/v1\/find/)
.to_return(status: 200, body: { results: [{ DPA: { MATCH: 0.7, BUILDING_NAME: "", POST_TOWN: "", POSTCODE: "AA1 1AA", UPRN: "1" } } ] }.to_json, headers: {}) .to_return(status: 200, body: { results: [{ DPA: { MATCH: 0.7, BUILDING_NAME: "", POST_TOWN: "", POSTCODE: "AA1 1AA", UPRN: "1" } }] }.to_json, headers: {})
end end
it "does not add errors" do it "does not add errors" do
@ -1619,7 +1619,7 @@ RSpec.describe BulkUpload::Lettings::Year2024::RowParser do
context "when no address has a high enough match rating" do context "when no address has a high enough match rating" do
before do before do
stub_request(:get, /api\.os\.uk\/search\/places\/v1\/find/) stub_request(:get, /api\.os\.uk\/search\/places\/v1\/find/)
.to_return(status: 200, body: { results: [{ DPA: { MATCH: 0.6, BUILDING_NAME: "", POST_TOWN: "", POSTCODE: "AA1 1AA", UPRN: "1" } } ] }.to_json, headers: {}) .to_return(status: 200, body: { results: [{ DPA: { MATCH: 0.6, BUILDING_NAME: "", POST_TOWN: "", POSTCODE: "AA1 1AA", UPRN: "1" } }] }.to_json, headers: {})
end end
it "adds address not found errors to address fields only" do it "adds address not found errors to address fields only" do

4
spec/services/bulk_upload/sales/year2024/row_parser_spec.rb

@ -984,7 +984,7 @@ RSpec.describe BulkUpload::Sales::Year2024::RowParser do
context "and an address can be found with a high enough match rating" do context "and an address can be found with a high enough match rating" do
before do before do
stub_request(:get, /api\.os\.uk\/search\/places\/v1\/find/) stub_request(:get, /api\.os\.uk\/search\/places\/v1\/find/)
.to_return(status: 200, body: { results: [{ DPA: { MATCH: 0.7, BUILDING_NAME: "", POST_TOWN: "", POSTCODE: "AA1 1AA", UPRN: "1" } } ] }.to_json, headers: {}) .to_return(status: 200, body: { results: [{ DPA: { MATCH: 0.7, BUILDING_NAME: "", POST_TOWN: "", POSTCODE: "AA1 1AA", UPRN: "1" } }] }.to_json, headers: {})
end end
it "does not add errors" do it "does not add errors" do
@ -1013,7 +1013,7 @@ RSpec.describe BulkUpload::Sales::Year2024::RowParser do
context "when no address has a high enough match rating" do context "when no address has a high enough match rating" do
before do before do
stub_request(:get, /api\.os\.uk\/search\/places\/v1\/find/) stub_request(:get, /api\.os\.uk\/search\/places\/v1\/find/)
.to_return(status: 200, body: { results: [{ DPA: { MATCH: 0.6, BUILDING_NAME: "", POST_TOWN: "", POSTCODE: "AA1 1AA", UPRN: "1" } } ] }.to_json, headers: {}) .to_return(status: 200, body: { results: [{ DPA: { MATCH: 0.6, BUILDING_NAME: "", POST_TOWN: "", POSTCODE: "AA1 1AA", UPRN: "1" } }] }.to_json, headers: {})
end end
it "adds address not found errors to address fields only" do it "adds address not found errors to address fields only" do

Loading…
Cancel
Save