Remove occurances of MCIEA

This commit is contained in:
rebuilt 2023-02-13 17:58:27 -08:00
parent 7a5e02eed9
commit 69c089d9bb
6 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@ module Dese
CSV.parse(File.read(filepath), headers: true) do |row|
score = likert_score(row:)
unless valid_likert_score(likert_score: score)
school = School.find_by_dese_id(row['DESE ID']) || School.new(name: 'Non-MCIEA school',
school = School.find_by_dese_id(row['DESE ID']) || School.new(name: 'School not in consortium',
dese_id: row['DESE ID'])
puts "Invalid score: #{score}
for school: #{school.name}