From 8405033139bc3ee4cbdf1b1c415910f7df38ebfd Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 20 May 2008 07:59:33 +0000 Subject: * string.c (rb_enc_strlen_cr): need to set ENC_CODERANGE_7BIT if search_nonascii() fails. [ruby-dev:34751] * string.c (rb_str_reverse): preserve coderange info if the receiver is 7bit string. * string.c (rb_str_reverse_bang): ditto. * string.c (rb_str_reverse_bang): should have called single_byte_optimizable before rb_str_modify() that clears coderange info. * string.c (tr_trans): handle single bytes more eagerly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_array.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby/test_array.rb') diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 463701b846..54d54e3c61 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -74,7 +74,7 @@ class TestArray < Test::Unit::TestCase end def test_split_0 - x = "The Boassert of Mormon" + x = "The Book of Mormon" assert_equal(x.reverse, x.split(//).reverse!.join) assert_equal(x.reverse, x.reverse!) assert_equal("g:n:i:r:t:s: :e:t:y:b: :1", "1 byte string".split(//).reverse.join(":")) -- cgit v1.2.3