aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/deprecated_associations_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/deprecated_associations_test.rb')
-rwxr-xr-xactiverecord/test/deprecated_associations_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/test/deprecated_associations_test.rb b/activerecord/test/deprecated_associations_test.rb
index f746275215..ed1b9be615 100755
--- a/activerecord/test/deprecated_associations_test.rb
+++ b/activerecord/test/deprecated_associations_test.rb
@@ -249,11 +249,11 @@ class DeprecatedAssociationsTest < Test::Unit::TestCase
end
def test_has_and_belongs_to_many_adding_a_collection
- aridridel = Developer.new("name" => "Aridridel")
- aridridel.save
+ aredridel = Developer.new("name" => "Aredridel")
+ aredridel.save
- aridridel.add_projects([ Project.find(1), Project.find(2) ])
- assert_equal 2, aridridel.projects_count
+ aredridel.add_projects([ Project.find(1), Project.find(2) ])
+ assert_equal 2, aredridel.projects_count
end
def test_belongs_to_counter