aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathname
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-20 17:44:31 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-20 17:44:31 +0000
commit27727621c468ec9d07ba84f8066d1f3eb25589e3 (patch)
treea1e2e8affcca0c5c69dd7682361a9b758f9031e7 /test/pathname
parent89130aa8e17642a8b60c02030610e12124f25721 (diff)
downloadruby-27727621c468ec9d07ba84f8066d1f3eb25589e3.tar.gz
* test/pathname/test_pathname.rb (TestPathname#test_mkdir): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29307 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/pathname')
-rw-r--r--test/pathname/test_pathname.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb
index ecd03d9288..235d0fb2ee 100644
--- a/test/pathname/test_pathname.rb
+++ b/test/pathname/test_pathname.rb
@@ -1192,7 +1192,7 @@ class TestPathname < Test::Unit::TestCase
Pathname("d").mkdir
assert(File.directory?("d"))
Pathname("e").mkdir(0770)
- assert(File.directory?("d"))
+ assert(File.directory?("e"))
}
end