summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-23 06:32:16 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-23 06:32:16 +0000
commit5b4ca970262a96864a657ceb7bce9fd136949764 (patch)
treeda9424188e2555fe4eb28e0b8eeb41075ca45205
parent339ba23e7a9513d7cf60a14f046abfce3cc48cd4 (diff)
downloadruby-5b4ca970262a96864a657ceb7bce9fd136949764.tar.gz
ruby-5b4ca970262a96864a657ceb7bce9fd136949764.tar.xz
ruby-5b4ca970262a96864a657ceb7bce9fd136949764.zip
* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_no_create): failed
notice moved from comment to assertion message. [ruby-dev:29127] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16172 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/gdbm/test_gdbm.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a0735681e..9ef5d1f9c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Apr 23 15:28:52 2008 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
+
+ * test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_no_create): failed
+ notice moved from comment to assertion message. [ruby-dev:29127]
+
Wed Apr 23 11:49:54 2008 Akinori MUSHA <knu@iDaemons.org>
* lib/set.rb (Set#each, SortedSet#each, TC_Set#test_each): Return
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb
index 96bb732e4..6033a7640 100644
--- a/test/gdbm/test_gdbm.rb
+++ b/test/gdbm/test_gdbm.rb
@@ -92,8 +92,8 @@ if defined? GDBM
end
end
def test_s_open_no_create
- # this test is failed on libgdbm 1.8.0
- assert_nil(gdbm = GDBM.open("#{@tmpdir}/#{@prefix}", nil))
+ assert_nil(gdbm = GDBM.open("#{@tmpdir}/#{@prefix}", nil),
+ "this test is failed on libgdbm 1.8.0")
ensure
gdbm.close if gdbm
end