aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-11-15 10:12:09 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-11-15 10:12:09 -0800
commit022519a032c830afa1fa1b9d02a27acf5588476b (patch)
tree4e9b308a77a782ff112e4ec68949bfda3f658b2d /activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb
parent8124b2bc24b8312ee4d1ce2f133bf6e2dd87ad49 (diff)
downloadrails-022519a032c830afa1fa1b9d02a27acf5588476b.tar.gz
rails-022519a032c830afa1fa1b9d02a27acf5588476b.tar.bz2
rails-022519a032c830afa1fa1b9d02a27acf5588476b.zip
fisting a bunch of unused variable warnings
Diffstat (limited to 'activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb')
-rw-r--r--activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb b/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb
index b124a2bfc3..fb59f63f91 100644
--- a/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb
+++ b/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb
@@ -17,7 +17,7 @@ class EagerLoadIncludeFullStiClassNamesTest < ActiveRecord::TestCase
def generate_test_objects
post = Namespaced::Post.create( :title => 'Great stuff', :body => 'This is not', :author_id => 1 )
- tagging = Tagging.create( :taggable => post )
+ Tagging.create( :taggable => post )
end
def test_class_names