From c0a7c893030b2ff6a28247643a2395a8436fdb6b Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 24 Jan 2016 15:00:57 +0000 Subject: test_class.rb: fix encoding * test/ruby/test_class.rb (test_namescope_error_message): fix encoding to UTF-8. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53646 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_class.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/ruby') diff --git a/test/ruby/test_class.rb b/test/ruby/test_class.rb index 4f4091d299..f84c2d7a78 100644 --- a/test/ruby/test_class.rb +++ b/test/ruby/test_class.rb @@ -541,7 +541,9 @@ class TestClass < Test::Unit::TestCase m = Module.new o = m.module_eval "class A\u{3042}; self; end.new" assert_raise_with_message(TypeError, /A\u{3042}/) { - o::Foo + EnvUtil.with_default_internal(Encoding::UTF_8) { + o::Foo + } } end -- cgit v1.2.3