aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-08-15 14:17:56 +0200
committerYves Senn <yves.senn@gmail.com>2014-08-15 14:17:56 +0200
commit60b2d29ee155707946dec8c0c1faf0cf7ba4aab5 (patch)
treeb446922b4893588231e8fd95d3347204c79f21a0 /activerecord/test
parent78f2ee50f00d670f6a075ca4325f8bcf4cf2d24b (diff)
downloadrails-60b2d29ee155707946dec8c0c1faf0cf7ba4aab5.tar.gz
rails-60b2d29ee155707946dec8c0c1faf0cf7ba4aab5.tar.bz2
rails-60b2d29ee155707946dec8c0c1faf0cf7ba4aab5.zip
fix typo in method name (broken build :sweat:)
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/attribute_methods_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/attribute_methods_test.rb b/activerecord/test/cases/attribute_methods_test.rb
index 68aa6b8caf..535928783f 100644
--- a/activerecord/test/cases/attribute_methods_test.rb
+++ b/activerecord/test/cases/attribute_methods_test.rb
@@ -263,7 +263,7 @@ class AttributeMethodsTest < ActiveRecord::TestCase
end
assert_equal klass.column_names, klass.new.attributes.keys
- assert_not klass.new.has_attributes?('id')
+ assert_not klass.new.has_attribute?('id')
end
def test_hashes_not_mangled