From 9d6384444947a235800a41be83e34673ba5eaec0 Mon Sep 17 00:00:00 2001 From: aamine Date: Wed, 26 Jan 2005 15:13:03 +0000 Subject: * test/fileutils/test_fileutils.rb (setup): support BSD style directory group inheritance (again). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7835 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/fileutils/test_fileutils.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/fileutils/test_fileutils.rb b/test/fileutils/test_fileutils.rb index 6b3e32412..6ecd25c0f 100644 --- a/test/fileutils/test_fileutils.rb +++ b/test/fileutils/test_fileutils.rb @@ -86,8 +86,8 @@ class TestFileUtils tmproot = TMPROOT mymkdir tmproot unless File.directory?(tmproot) Dir.chdir tmproot - my_rm_rf 'data'; Dir.mkdir 'data' - my_rm_rf 'tmp'; Dir.mkdir 'tmp' + my_rm_rf 'data'; mymkdir 'data' + my_rm_rf 'tmp'; mymkdir 'tmp' prepare_data_file prepare_time_data end -- cgit