From bd22fbf9c9ed644b24974e7fd6a8a4190dce2b36 Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 7 Jul 2015 15:57:12 +0000 Subject: * test/ruby/test_method.rb (TestMethod#test_{instance,define}_method): assumed default external is UTF-8. fixed failures introduced at r51175. * test/-ext-/symbol/test_type.rb (Test_Symbol::TestType#test_check_{id,symbol}_invalid_type): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/-ext-/symbol/test_type.rb | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'test/-ext-') diff --git a/test/-ext-/symbol/test_type.rb b/test/-ext-/symbol/test_type.rb index 3c21e61a18..ddd79561ab 100644 --- a/test/-ext-/symbol/test_type.rb +++ b/test/-ext-/symbol/test_type.rb @@ -122,17 +122,21 @@ module Test_Symbol end def test_check_id_invalid_type - cx = EnvUtil.labeled_class("X\u{1f431}") - assert_raise_with_message(TypeError, /X\u{1F431}/) { - Bug::Symbol.pinneddown?(cx) - } + EnvUtil.with_default_external(Encoding::UTF_8) do + cx = EnvUtil.labeled_class("X\u{1f431}") + assert_raise_with_message(TypeError, /X\u{1F431}/) { + Bug::Symbol.pinneddown?(cx) + } + end end def test_check_symbol_invalid_type - cx = EnvUtil.labeled_class("X\u{1f431}") - assert_raise_with_message(TypeError, /X\u{1F431}/) { - Bug::Symbol.find(cx) - } + EnvUtil.with_default_external(Encoding::UTF_8) do + cx = EnvUtil.labeled_class("X\u{1f431}") + assert_raise_with_message(TypeError, /X\u{1F431}/) { + Bug::Symbol.find(cx) + } + end end end end -- cgit v1.2.3