aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2011-05-10 10:57:15 -0700
committerPiotr Sarnacki <drogus@gmail.com>2011-05-10 10:57:15 -0700
commit9f0af6d6ddab499225b58e46f2c2d04396ebf367 (patch)
tree73470cdd16ec08622190bae82c1bff445b823ec5 /actionpack
parent86604335374f08d9e1889801dafbe92e79b2a1eb (diff)
parent33f0b6b67d640168c2699659c4a6aa2113b635b7 (diff)
downloadrails-9f0af6d6ddab499225b58e46f2c2d04396ebf367.tar.gz
rails-9f0af6d6ddab499225b58e46f2c2d04396ebf367.tar.bz2
rails-9f0af6d6ddab499225b58e46f2c2d04396ebf367.zip
Merge pull request #495 from vatrai/minor_fixes
minor cleaning
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/activerecord/render_partial_with_record_identification_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/activerecord/render_partial_with_record_identification_test.rb b/actionpack/test/activerecord/render_partial_with_record_identification_test.rb
index 99f09286ff..97be5a5bb0 100644
--- a/actionpack/test/activerecord/render_partial_with_record_identification_test.rb
+++ b/actionpack/test/activerecord/render_partial_with_record_identification_test.rb
@@ -36,7 +36,7 @@ class RenderPartialWithRecordIdentificationController < ActionController::Base
end
def render_with_record_collection
- @developers = Developer.find(:all)
+ @developers = Developer.all
render :partial => @developers
end