From e78826ffec9463042a6f396028d9f9fecd60e895 Mon Sep 17 00:00:00 2001 From: kazu Date: Wed, 23 Apr 2008 06:33:20 +0000 Subject: [PATCH] * 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: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16173 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/gdbm/test_gdbm.rb | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4077db2760..d4f22f48b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Apr 23 15:28:52 2008 Kazuhiro NISHIYAMA + + * 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 14:00:05 2008 Akinori MUSHA * lib/mkmf.rb (create_makefile): Add a missing dependency on the diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb index b84221e547..5b25497211 100644 --- a/test/gdbm/test_gdbm.rb +++ b/test/gdbm/test_gdbm.rb @@ -90,8 +90,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("tmptest_gdbm", nil)) + assert_nil(gdbm = GDBM.open("tmptest_gdbm", nil), + "this test is failed on libgdbm 1.8.0") ensure gdbm.close if gdbm end