From c59b918892beb5ac7d7884beca12928c1f7dd1d5 Mon Sep 17 00:00:00 2001 From: mame Date: Tue, 22 Jul 2008 11:34:23 +0000 Subject: * test/rdoc/test_rdoc_parser_ruby.rb (teardown): close tempfile. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18161 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ test/rdoc/test_rdoc_parser_ruby.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c10438150..b8372656d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 22 20:33:54 2008 Yusuke Endoh + + * test/rdoc/test_rdoc_parser_ruby.rb (teardown): close tempfile. + Tue Jul 22 19:38:38 2008 Martin Duerst * test/ruby/test_transcode.rb: added two comments diff --git a/test/rdoc/test_rdoc_parser_ruby.rb b/test/rdoc/test_rdoc_parser_ruby.rb index 46c95bd06..77d8bd24f 100644 --- a/test/rdoc/test_rdoc_parser_ruby.rb +++ b/test/rdoc/test_rdoc_parser_ruby.rb @@ -19,7 +19,7 @@ class TestRdocParserRuby < Test::Unit::TestCase end def teardown - @tempfile.unlink + @tempfile.close end def test_look_for_directives_in_commented -- cgit