aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorLauro Caetano <laurocaetano1@gmail.com>2014-04-09 21:56:40 -0300
committerLauro Caetano <laurocaetano1@gmail.com>2014-04-09 21:56:40 -0300
commit213ef567ae2ab92f1e1145cd385da0c5b9534422 (patch)
tree451bcb8377ba1aa70521f954440edafa32ae53bb /activerecord/test/cases
parente7630b62a604a0bc11a56283140f11a80e4cc1b0 (diff)
downloadrails-213ef567ae2ab92f1e1145cd385da0c5b9534422.tar.gz
rails-213ef567ae2ab92f1e1145cd385da0c5b9534422.tar.bz2
rails-213ef567ae2ab92f1e1145cd385da0c5b9534422.zip
Make sure the reflection test is passing a String to the reflection
cache.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/reflection_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/reflection_test.rb b/activerecord/test/cases/reflection_test.rb
index ad77472333..fed199f6e9 100644
--- a/activerecord/test/cases/reflection_test.rb
+++ b/activerecord/test/cases/reflection_test.rb
@@ -192,7 +192,7 @@ class ReflectionTest < ActiveRecord::TestCase
end
def test_reflection_should_not_raise_error_when_compared_to_other_object
- assert_nothing_raised { Firm.reflections[:clients] == Object.new }
+ assert_nothing_raised { Firm.reflections['clients'] == Object.new }
end
def test_has_many_through_reflection