From 404bf57aaffd64cb251574e2916e393d272f77a3 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 9 Apr 2016 01:25:11 +0000 Subject: assertions.rb: set default internal encoding * test/lib/test/unit/assertions.rb (assert_raise_with_message): set default internal encoding to the excpected message, which affects String#inspect in messages. * test/lib/test/unit/assertions.rb (assert_warning): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/-ext-/symbol/test_type.rb | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'test/-ext-/symbol/test_type.rb') diff --git a/test/-ext-/symbol/test_type.rb b/test/-ext-/symbol/test_type.rb index 32a700d273..7cb3c7b6ef 100644 --- a/test/-ext-/symbol/test_type.rb +++ b/test/-ext-/symbol/test_type.rb @@ -123,21 +123,17 @@ module Test_Symbol end def test_check_id_invalid_type - 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 + cx = EnvUtil.labeled_class("X\u{1f431}") + assert_raise_with_message(TypeError, /X\u{1F431}/) { + Bug::Symbol.pinneddown?(cx) + } end def test_check_symbol_invalid_type - 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 + cx = EnvUtil.labeled_class("X\u{1f431}") + assert_raise_with_message(TypeError, /X\u{1F431}/) { + Bug::Symbol.find(cx) + } end end end -- cgit v1.2.3