aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/xml_mini/xml_mini_engine_test.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-10-01 10:08:51 +0900
committerGitHub <noreply@github.com>2018-10-01 10:08:51 +0900
commitb13a5cb83ea00d6a3d71320fd276ca21049c2544 (patch)
treef571491d2bfe23944cdda8b25ffb62cab18c6522 /activesupport/test/xml_mini/xml_mini_engine_test.rb
parentb707a6d0eb7a694595152c5ca18f1e72e0bc2f7e (diff)
parentaa3dcabd874a3e82e455e85a1c94a7abaac2900a (diff)
downloadrails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.tar.gz
rails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.tar.bz2
rails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.zip
Merge pull request #32031 from yahonda/remove_redundant_freeze
Add `Style/RedundantFreeze` to remove redudant `.freeze`
Diffstat (limited to 'activesupport/test/xml_mini/xml_mini_engine_test.rb')
-rw-r--r--activesupport/test/xml_mini/xml_mini_engine_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/xml_mini/xml_mini_engine_test.rb b/activesupport/test/xml_mini/xml_mini_engine_test.rb
index 5c4c28d9b7..c62e7e32c9 100644
--- a/activesupport/test/xml_mini/xml_mini_engine_test.rb
+++ b/activesupport/test/xml_mini/xml_mini_engine_test.rb
@@ -78,7 +78,7 @@ class XMLMiniEngineTest < ActiveSupport::TestCase
end
def test_parse_from_frozen_string
- xml_string = "<root/>".freeze
+ xml_string = "<root/>"
assert_equal({ "root" => {} }, ActiveSupport::XmlMini.parse(xml_string))
end