summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-14 03:19:51 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-14 03:19:51 +0000
commit42f444d1e90707350500fc2a842c96edeec23e94 (patch)
treeb0d81b427d28aa649282c480c64e54d934648a0c /test
parentd3a7696eb57839ff215bf29cfad6a3cd245e8bc9 (diff)
downloadruby-42f444d1e90707350500fc2a842c96edeec23e94.tar.gz
ruby-42f444d1e90707350500fc2a842c96edeec23e94.tar.xz
ruby-42f444d1e90707350500fc2a842c96edeec23e94.zip
Explicitly use FileUtils.rm_f. [ruby-dev:39345]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/fileutils/test_fileutils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fileutils/test_fileutils.rb b/test/fileutils/test_fileutils.rb
index 713869827..dfbeec5b2 100644
--- a/test/fileutils/test_fileutils.rb
+++ b/test/fileutils/test_fileutils.rb
@@ -452,7 +452,7 @@ class TestFileUtils
# [ruby-dev:39345]
touch 'tmp/[rmtmp]'
- rm_f 'tmp/[rmtmp]'
+ FileUtils.rm_f 'tmp/[rmtmp]'
assert_file_not_exist 'tmp/[rmtmp]'
end