diff --git a/app/models/application_record.rb b/app/models/application_record.rb index fc09e269..10a4cba8 100644 --- a/app/models/application_record.rb +++ b/app/models/application_record.rb @@ -1,4 +1,3 @@ -# TODO: move this to legacy, probably? class ApplicationRecord < ActiveRecord::Base self.abstract_class = true end diff --git a/spec/views/legacy/recipients/edit.html.erb_spec.rb b/spec/views/legacy/recipients/edit.html.erb_spec.rb index 659944f3..802b5aa6 100644 --- a/spec/views/legacy/recipients/edit.html.erb_spec.rb +++ b/spec/views/legacy/recipients/edit.html.erb_spec.rb @@ -3,7 +3,7 @@ require 'rails_helper' module Legacy RSpec.describe 'legacy/recipients/edit', type: :view do before(:each) do - @school = assign(:recipient, School.create!( # TODO: does this need to be :school? + @school = assign(:recipient, School.create!( name: 'School' ))