Browse Source

correct a small error in a previous commit

pull/1268/head
Arthur Campbell 3 years ago
parent
commit
76d9340a50
  1. 2
      spec/models/lettings_log_spec.rb

2
spec/models/lettings_log_spec.rb

@ -2745,7 +2745,7 @@ RSpec.describe LettingsLog do
let(:csv_export_file) { File.open("spec/fixtures/files/lettings_logs_download_codes_only.csv", "r:UTF-8") } let(:csv_export_file) { File.open("spec/fixtures/files/lettings_logs_download_codes_only.csv", "r:UTF-8") }
it "generates a correct csv from a lettings log" do it "generates a correct csv from a lettings log" do
expect(described_class.to_csv(codes_only: true)).to eq(expected_content) expect(described_class.to_csv(codes_only_export: true)).to eq(expected_content)
end end
end end
end end

Loading…
Cancel
Save