diff options
author | Kir Shatrov <shatrov@me.com> | 2017-07-01 23:09:13 +0300 |
---|---|---|
committer | Kir Shatrov <shatrov@me.com> | 2017-07-06 21:30:43 +0300 |
commit | b3f3d49fd6b91c6573b3e10e3d00f65306638927 (patch) | |
tree | b831a180c5fe686fc47d80f56e46f2e727fac1b5 /actionpack/test/journey | |
parent | 6f2b0eb44ab166f98f3bc4a3aa09d3b899e0fd62 (diff) | |
download | rails-b3f3d49fd6b91c6573b3e10e3d00f65306638927.tar.gz rails-b3f3d49fd6b91c6573b3e10e3d00f65306638927.tar.bz2 rails-b3f3d49fd6b91c6573b3e10e3d00f65306638927.zip |
Prepare AP and AR to be frozen string friendly
Diffstat (limited to 'actionpack/test/journey')
-rw-r--r-- | actionpack/test/journey/router/utils_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/journey/router/utils_test.rb b/actionpack/test/journey/router/utils_test.rb index 74277a4325..a69b606b01 100644 --- a/actionpack/test/journey/router/utils_test.rb +++ b/actionpack/test/journey/router/utils_test.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: true require "abstract_unit" module ActionDispatch @@ -21,7 +22,7 @@ module ActionDispatch end def test_uri_unescape_with_utf8_string - assert_equal "Šašinková", Utils.unescape_uri("%C5%A0a%C5%A1inkov%C3%A1".force_encoding(Encoding::US_ASCII)) + assert_equal "Šašinková", Utils.unescape_uri("%C5%A0a%C5%A1inkov%C3%A1".dup.force_encoding(Encoding::US_ASCII)) end def test_normalize_path_not_greedy |