diff options
author | Nicholas Rowe <nixterrimus@gmail.com> | 2011-02-19 23:47:12 -0500 |
---|---|---|
committer | Nicholas Rowe <nixterrimus@gmail.com> | 2011-02-19 23:47:12 -0500 |
commit | 2a75c190d43dc6ea9d43216d324b7c0f38a1c65d (patch) | |
tree | 1bf0bc0e1f0af20d267917ccbb9b122c56c2a11a /activerecord/test | |
parent | 89b3bc480761ee7afd858ab4a78d5b79be3a267c (diff) | |
download | rails-2a75c190d43dc6ea9d43216d324b7c0f38a1c65d.tar.gz rails-2a75c190d43dc6ea9d43216d324b7c0f38a1c65d.tar.bz2 rails-2a75c190d43dc6ea9d43216d324b7c0f38a1c65d.zip |
Tpyo: fixing several cases of the the
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/autosave_association_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/autosave_association_test.rb b/activerecord/test/cases/autosave_association_test.rb index 0e93b468c1..0dfdaa3443 100644 --- a/activerecord/test/cases/autosave_association_test.rb +++ b/activerecord/test/cases/autosave_association_test.rb @@ -743,7 +743,7 @@ class TestDestroyAsPartOfAutosaveAssociation < ActiveRecord::TestCase 2.times { |i| @pirate.birds.create!(:name => "birds_#{i}") } before = @pirate.birds.map { |c| c.mark_for_destruction ; c } - # Stub the destroy method of the the second child to raise an exception + # Stub the destroy method of the second child to raise an exception class << before.last def destroy(*args) super |