1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
kazu 2010-09-20 17:44:31 +00:00
parent 89130aa8e1
commit 27727621c4
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Tue Sep 21 02:42:35 2010 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* test/pathname/test_pathname.rb (TestPathname#test_mkdir): fix typo.
Mon Sep 20 23:23:05 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* dir.c (bracket): get rid of scanning at the end of the pattern

View file

@ -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