summaryrefslogtreecommitdiff
path: root/test/-ext-/string
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-23 07:56:43 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-23 07:56:43 +0900
commit3840791b7ebb2442724d96c69a791d0e678fbc6c (patch)
treeb7622392fd9cec08d095482534f44705c7f113b1 /test/-ext-/string
parentbebe8d13f8e14dffa9d1828f6e9805773dc30518 (diff)
Get rid of error with frozen string literal
[Bug #14194]
Diffstat (limited to 'test/-ext-/string')
-rw-r--r--test/-ext-/string/test_fstring.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/-ext-/string/test_fstring.rb b/test/-ext-/string/test_fstring.rb
index 1b3b15c922..8612b5d710 100644
--- a/test/-ext-/string/test_fstring.rb
+++ b/test/-ext-/string/test_fstring.rb
@@ -58,7 +58,7 @@ class Test_String_Fstring < Test::Unit::TestCase
end
def test_singleton_class
- str = noninterned_name.force_encoding("us-ascii")
+ str = noninterned_name
fstr = Bug::String.fstring(str)
assert_raise(TypeError) {fstr.singleton_class}
end