aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-12 13:24:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-12 13:24:23 +0000
commit3f8c30d1b4f1251186f0124cd76523add4362a29 (patch)
treee5cd544c1eb43aa5ce1a9c7ab53062463fa3a726
parentbfd7c7dc918dd10367aa92a889b88002121f2edb (diff)
downloadruby-3f8c30d1b4f1251186f0124cd76523add4362a29.tar.gz
test_fstring.rb: fix exception
* test/-ext-/string/test_fstring.rb (test_singleton_class): fix expected exception class. [ruby-dev:49867] [Bug #12923] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56754 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 0514814dd4..1b3b15c922 100644
--- a/test/-ext-/string/test_fstring.rb
+++ b/test/-ext-/string/test_fstring.rb
@@ -60,7 +60,7 @@ class Test_String_Fstring < Test::Unit::TestCase
def test_singleton_class
str = noninterned_name.force_encoding("us-ascii")
fstr = Bug::String.fstring(str)
- assert_raise(RuntimeError) {fstr.singleton_class}
+ assert_raise(TypeError) {fstr.singleton_class}
end
class S < String