diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-04-12 16:08:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 16:08:12 -0400 |
commit | 4e342c36b55c27c8b378aedd8fa7acb71e37609f (patch) | |
tree | 4f7d1eae0d9592c3553b402a0823bc948b20f2d0 /activemodel/test | |
parent | 713f62430a42294dcb156cc8f38b41509a60d7a6 (diff) | |
parent | 63b5bdea517c47b50c909c1be128d26d598db9a5 (diff) | |
download | rails-4e342c36b55c27c8b378aedd8fa7acb71e37609f.tar.gz rails-4e342c36b55c27c8b378aedd8fa7acb71e37609f.tar.bz2 rails-4e342c36b55c27c8b378aedd8fa7acb71e37609f.zip |
Merge pull request #35955 from shioyama/remove_method_name_from_attribute_method_match
Remove unused method_name from AttributeMethodMatch
Diffstat (limited to 'activemodel/test')
-rw-r--r-- | activemodel/test/cases/attribute_methods_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activemodel/test/cases/attribute_methods_test.rb b/activemodel/test/cases/attribute_methods_test.rb index ebb6cc542d..4e228032c3 100644 --- a/activemodel/test/cases/attribute_methods_test.rb +++ b/activemodel/test/cases/attribute_methods_test.rb @@ -264,6 +264,5 @@ class AttributeMethodsTest < ActiveModel::TestCase assert_equal "foo", match.attr_name assert_equal "attribute_test", match.target - assert_equal "foo_test", match.method_name end end |