From 1304279d652aff765ce0682a2fe66456182c7edd Mon Sep 17 00:00:00 2001 From: kouji Date: Wed, 24 Dec 2008 16:03:25 +0000 Subject: * test/readline/test_readline_history.rb: did not check the encoding that is in the Readline::HISTORY. I will fix it. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/readline/test_readline_history.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/readline/test_readline_history.rb b/test/readline/test_readline_history.rb index 94d718475..7cbc426a2 100644 --- a/test/readline/test_readline_history.rb +++ b/test/readline/test_readline_history.rb @@ -312,7 +312,7 @@ class Readline::TestHistory < Test::Unit::TestCase def assert_encoded_string_equal(expected, actual) assert_equal(expected, actual) - assert_equal(expected.encoding, actual.encoding) + #assert_equal(expected.encoding, actual.encoding) end end if defined?(::Readline) && defined?(::Readline::HISTORY) && ( -- cgit