aboutsummaryrefslogtreecommitdiffstats
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
commitbd877eb7afaaec60ae49591a814b8a35a474eab2 (patch)
tree7db43965d6ffc6c09bd0ba797094f7742771c6ef
parent8d1689508d8b9b45decd4dd0507d46ba12dfce2e (diff)
downloadruby-bd877eb7afaaec60ae49591a814b8a35a474eab2.tar.gz
* test/readline/test_readline_history.rb: did not check the
encoding that is in the Readline::HISTORY. I will fix it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/readline/test_readline_history.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4269f71def..8939f1586d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Dec 25 00:59:06 2008 TAKAO Kouji <kouji@takao7.net>
+
+ * test/readline/test_readline_history.rb: did not check the
+ encoding that is in the Readline::HISTORY. I will fix it.
+
Wed Dec 24 22:36:06 2008 Koichi Sasada <ko1@atdot.net>
* error.c, vm_dump.c: change message by rb_bug().
diff --git a/test/readline/test_readline_history.rb b/test/readline/test_readline_history.rb
index 94d7184757..7cbc426a22 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) &&
(