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

Fix test failures

The previous commit changes the state of the class, and while we are
cleaning up the database, I forgot to clean up the class
This commit is contained in:
Sean Griffin 2015-11-07 08:44:29 -07:00
parent 9deb6ababe
commit 986f79a446

View file

@ -977,5 +977,6 @@ class PersistenceTest < ActiveRecord::TestCase
assert_equal "bar", child.new(foo: :bar).foo
ensure
ActiveRecord::Base.connection.remove_column(:topics, :foo)
Topic.reset_column_information
end
end