summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-06 06:41:38 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-06 06:41:38 +0000
commit0209f8d476470226103857db21f8f6967870a37b (patch)
tree20c001f8bd15b5d7f7a764f70a91eed0a2590a57 /test
parent20c91cafba7a5f1c212d500810d5675edab4cca3 (diff)
Fix copy and paste miss of r33960.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/dbm/test_dbm.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dbm/test_dbm.rb b/test/dbm/test_dbm.rb
index 464194731d..035d5df385 100644
--- a/test/dbm/test_dbm.rb
+++ b/test/dbm/test_dbm.rb
@@ -105,7 +105,7 @@ if defined? DBM
end
def test_s_open_no_create
- skip "gdbm_open(GDBM_WRITER) is broken on libgdbm 1.8.0" if /1\.8\.0/ =~ GDBM::VERSION
+ skip "dbm_open() is broken on libgdbm 1.8.0" if /1\.8\.0/ =~ DBM::VERSION
assert_nil(dbm = DBM.open("#{@tmpdir}/#{@prefix}", nil))
ensure
dbm.close if dbm
@@ -529,7 +529,7 @@ if defined? DBM
end
def test_writer_open_notexist
- skip "gdbm_open(GDBM_WRITER) is broken on libgdbm 1.8.0" if /1\.8\.0/ =~ GDBM::VERSION
+ skip "dbm_open() is broken on libgdbm 1.8.0" if /1\.8\.0/ =~ DBM::VERSION
assert_raise(Errno::ENOENT) {
DBM.open("#{@tmproot}/a", 0666, DBM::WRITER)
}