diff options
author | Vishnu Atrai <me@vishnuatrai.com> | 2011-05-10 22:51:54 +0530 |
---|---|---|
committer | Vishnu Atrai <me@vishnuatrai.com> | 2011-05-10 22:51:54 +0530 |
commit | 33f0b6b67d640168c2699659c4a6aa2113b635b7 (patch) | |
tree | b2a1b85728ab6e3c25dcf7e90adbc81cf4396b28 /actionpack/test | |
parent | 4de977117f5d7123aa97ab3837cc96ec19c68d33 (diff) | |
download | rails-33f0b6b67d640168c2699659c4a6aa2113b635b7.tar.gz rails-33f0b6b67d640168c2699659c4a6aa2113b635b7.tar.bz2 rails-33f0b6b67d640168c2699659c4a6aa2113b635b7.zip |
minor cleaning
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/activerecord/render_partial_with_record_identification_test.rb | 2 |
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 |