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
This commit is contained in:
nobu 2016-11-12 13:24:23 +00:00
Родитель cc376ee210
Коммит c62ab010c8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,7 @@ class Test_String_Fstring < Test::Unit::TestCase
def test_singleton_class def test_singleton_class
str = noninterned_name.force_encoding("us-ascii") str = noninterned_name.force_encoding("us-ascii")
fstr = Bug::String.fstring(str) fstr = Bug::String.fstring(str)
assert_raise(RuntimeError) {fstr.singleton_class} assert_raise(TypeError) {fstr.singleton_class}
end end
class S < String class S < String