summaryrefslogtreecommitdiffstats
path: root/test/readline
diff options
context:
space:
mode:
authorkouji <kouji@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-24 16:03:25 +0000
committerkouji <kouji@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-24 16:03:25 +0000
commit1304279d652aff765ce0682a2fe66456182c7edd (patch)
tree7db43965d6ffc6c09bd0ba797094f7742771c6ef /test/readline
parent81361e6ada9326034c8be24ecc2e44fa9033b318 (diff)
downloadruby-1304279d652aff765ce0682a2fe66456182c7edd.tar.gz
ruby-1304279d652aff765ce0682a2fe66456182c7edd.tar.xz
ruby-1304279d652aff765ce0682a2fe66456182c7edd.zip
* 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
Diffstat (limited to 'test/readline')
-rw-r--r--test/readline/test_readline_history.rb2
1 files changed, 1 insertions, 1 deletions
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) &&
(