summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--test/ruby/test_io.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6762354d6f..4dd7917868 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Aug 25 22:29:13 2008 Yusuke Endoh <mame@tsg.ne.jp>
+
+ * test/ruby/test_io.rb (test_dup): fix typo. see [ruby-dev:35958]
+
Mon Aug 25 22:02:35 2008 Tanaka Akira <akr@fsij.org>
* transcode.c (rb_econv_open_by_transcoder_entries): initialize
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index f2a9a666ff..de1a1526eb 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -637,7 +637,7 @@ class TestIO < Test::Unit::TestCase
end
pipe2 do |r, w|
- assert_raise(Errno::EMFILE, Errno::ENFILE, Errno::NOMEM) do
+ assert_raise(Errno::EMFILE, Errno::ENFILE, Errno::ENOMEM) do
r2, w2 = r.dup, w.dup
end
end