Skip to content

Commit

Permalink
fixing test for mysql2
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed May 27, 2011
1 parent 57958cb commit c3cbd2c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions activerecord/test/cases/associations/eager_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -362,13 +362,10 @@ def test_string_id_column_joins
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

Expand Down

0 comments on commit c3cbd2c

Please sign in to comment.