diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-05-21 22:17:56 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-05-21 22:17:56 +0000 |
commit | cc1c943aa16d79fde2c13e339da37a1e163061ad (patch) | |
tree | ef85a949350c48b7b5178dc6f44beef09c306f1f | |
parent | 738c43c549a504c7478aee34aacb31030fac612a (diff) | |
download | rails-cc1c943aa16d79fde2c13e339da37a1e163061ad.tar.gz rails-cc1c943aa16d79fde2c13e339da37a1e163061ad.tar.bz2 rails-cc1c943aa16d79fde2c13e339da37a1e163061ad.zip |
Make Oracle happy
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4357 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-x | activerecord/test/associations_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/associations_test.rb b/activerecord/test/associations_test.rb index f3e210bf77..c9a66f2efc 100755 --- a/activerecord/test/associations_test.rb +++ b/activerecord/test/associations_test.rb @@ -513,7 +513,7 @@ class HasManyAssociationsTest < Test::Unit::TestCase end def test_build_without_loading_association - first_topic = Topic.find(:first) + first_topic = topics(:first) Reply.column_names assert_equal 1, first_topic.replies.length |