summaryrefslogtreecommitdiffstats
path: root/test/fileutils
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-26 15:13:03 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-26 15:13:03 +0000
commit9d6384444947a235800a41be83e34673ba5eaec0 (patch)
tree18f2f68982a71b574b056fd7937ec9a244bc6bae /test/fileutils
parentc96ab78d73d989e450b46e768cc864281a70d14d (diff)
downloadruby-9d6384444947a235800a41be83e34673ba5eaec0.tar.gz
ruby-9d6384444947a235800a41be83e34673ba5eaec0.tar.xz
ruby-9d6384444947a235800a41be83e34673ba5eaec0.zip
* 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
Diffstat (limited to 'test/fileutils')
-rw-r--r--test/fileutils/test_fileutils.rb4
1 files changed, 2 insertions, 2 deletions
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