diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-05-27 11:44:00 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-05-27 11:44:14 -0700 |
commit | 8628948e2a2c874facc66a1d7b328431f8c0b3c8 (patch) | |
tree | f66de025b1255c48f8b6eb2328713c74bf91ac8c /activerecord/test/cases | |
parent | 4ae8381e3a2170a667a12a88156414cbb3a35a83 (diff) | |
download | rails-8628948e2a2c874facc66a1d7b328431f8c0b3c8.tar.gz rails-8628948e2a2c874facc66a1d7b328431f8c0b3c8.tar.bz2 rails-8628948e2a2c874facc66a1d7b328431f8c0b3c8.zip |
fixing test for mysql2
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/associations/eager_test.rb | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb index be92b30131..325fc58958 100644 --- a/activerecord/test/cases/associations/eager_test.rb +++ b/activerecord/test/cases/associations/eager_test.rb @@ -385,13 +385,10 @@ class EagerAssociationTest < ActiveRecord::TestCase c.id = "PL" end - b = Book.create! do |t| - t.id = "UE" - end + b = Book.create! - Subscription.create!(:subscriber_id => "PL", :book_id => "UE") + Subscription.create!(:subscriber_id => "PL", :book_id => b.id) s.reload - s.books s.book_ids = s.book_ids end |