1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add missing require to activerecord base_test.rb

as  silence_warnings  is used.
This commit is contained in:
Pavel Valena 2022-03-08 17:28:51 +01:00 committed by GitHub
parent 53566644f3
commit afde7e3c0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,6 +30,7 @@ require "models/pet"
require "models/owner"
require "concurrent/atomic/count_down_latch"
require "active_support/core_ext/enumerable"
require "active_support/core_ext/kernel/reporting"
class FirstAbstractClass < ActiveRecord::Base
self.abstract_class = true