aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-05 05:11:15 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-05 05:11:15 +0000
commitf75ab0150dfa44f00921f60f1e43b3b3637d62dc (patch)
tree28a28fcd1fd2b45a468e1902b3d16bbfd3f655df
parent159fd9ee6cd7583bc78d8d092b3f4ba5cded5508 (diff)
downloadruby-f75ab0150dfa44f00921f60f1e43b3b3637d62dc.tar.gz
* test/net/imap/test_imap.rb (test_exception_during_shutdown):
need to raise always. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/net/imap/test_imap.rb1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d42ad5ec3b..de54f561e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jun 5 14:11:11 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * test/net/imap/test_imap.rb (test_exception_during_shutdown):
+ need to raise always.
+
Sat Jun 5 13:13:30 2010 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
* lib/matrix.rb (eql?, ==, minor): Fix bugs when comparing/returning
diff --git a/test/net/imap/test_imap.rb b/test/net/imap/test_imap.rb
index 5cf2e97346..cd9b2824a4 100644
--- a/test/net/imap/test_imap.rb
+++ b/test/net/imap/test_imap.rb
@@ -338,6 +338,7 @@ class IMAPTest < Test::Unit::TestCase
imap.instance_eval do
def @sock.shutdown(*args)
super
+ ensure
raise "error"
end
end