Browse Source

Remove forms and update a test

pull/2153/head
Kat 2 years ago
parent
commit
87522517cc
  1. BIN
      public/files/2022_23_lettings_paper_form.pdf
  2. BIN
      public/files/2022_23_sales_paper_form.pdf
  3. 2
      spec/services/bulk_upload/sales/validator_spec.rb

BIN
public/files/2022_23_lettings_paper_form.pdf

Binary file not shown.

BIN
public/files/2022_23_sales_paper_form.pdf

Binary file not shown.

2
spec/services/bulk_upload/sales/validator_spec.rb

@ -31,7 +31,7 @@ RSpec.describe BulkUpload::Sales::Validator do
context "when file has too many columns" do context "when file has too many columns" do
before do before do
file.write((%w[a] * 143).join(",")) file.write((%w[a] * (BulkUpload::Sales::Year2023::CsvParser::MAX_COLUMNS + 1)).join(","))
file.rewind file.rewind
end end

Loading…
Cancel
Save