diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-25 09:49:32 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-25 09:49:32 +0000 |
| commit | f673c13cbb888a47bbe2ef5c145ff94d48b22e5e (patch) | |
| tree | d88f8d60ecf9b66e4756a37172e1ff22a6fc4f55 | |
| parent | 9be191355f2408065c5115526e2eb31faed8c1d0 (diff) | |
merges r20972 from trunk into ruby_1_9_1.
* 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/branches/ruby_1_9_1@20993 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/readline/test_readline_history.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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. + Mon Dec 22 02:54:56 2008 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tk/lib/tk.rb: temporary patch for trouble on TkAqua (> Tk8.4.9). 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) && ( |
