diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-17 14:46:15 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-17 14:46:15 +0000 |
commit | 0af4a490b48bb6fef8d4f392d0c0b215db8e06f9 (patch) | |
tree | 9074fe5a68300fcb5d0edf32b74b5a127055930e | |
parent | d80a9afb186028c13e5087b2e6d3a2a0ccfe98b8 (diff) |
* test/rdoc/test_rdoc_c_parser.rb (teardown): close tempfile.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18120 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | test/rdoc/test_rdoc_c_parser.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Jul 17 23:45:55 2008 Yusuke Endoh <[email protected]> + + * test/rdoc/test_rdoc_c_parser.rb (teardown): close tempfile. + Thu Jul 17 21:08:49 2008 Yusuke Endoh <[email protected]> * test/ruby/test_process.rb (test_getpriority, test_setpriority): use diff --git a/test/rdoc/test_rdoc_c_parser.rb b/test/rdoc/test_rdoc_c_parser.rb index 6cbb2c92dc..72d09038a4 100644 --- a/test/rdoc/test_rdoc_c_parser.rb +++ b/test/rdoc/test_rdoc_c_parser.rb @@ -24,7 +24,7 @@ class TestRdocC_Parser < Test::Unit::TestCase end def teardown - @tempfile.unlink + @tempfile.close end def test_do_classes_boot_class |