aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorZuhao Wan <wanzuhao@gmail.com>2014-07-22 17:24:31 +0800
committerZuhao Wan <wanzuhao@gmail.com>2014-07-22 17:24:31 +0800
commit4dfe213d0fcaf5e665aa624686c13e08849059db (patch)
treed094d5836efa877d8070d4e57f5355da52a0ae11 /activerecord
parent4c81c8ce533896be28bdc0b055ff30bb9dee1316 (diff)
downloadrails-4dfe213d0fcaf5e665aa624686c13e08849059db.tar.gz
rails-4dfe213d0fcaf5e665aa624686c13e08849059db.tar.bz2
rails-4dfe213d0fcaf5e665aa624686c13e08849059db.zip
Remove redundant that already happened in teardown.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/attribute_decorators_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/test/cases/attribute_decorators_test.rb b/activerecord/test/cases/attribute_decorators_test.rb
index b352d1a6c2..cbc2c4e5d7 100644
--- a/activerecord/test/cases/attribute_decorators_test.rb
+++ b/activerecord/test/cases/attribute_decorators_test.rb
@@ -45,7 +45,6 @@ module ActiveRecord
test "decoration does not eagerly load existing columns" do
assert_no_queries do
- Model.reset_column_information
Model.decorate_attribute_type(:a_string, :test) { |t| StringDecorator.new(t) }
end
end