ruby-changes:17303
From: kazu <ko1@a...>
Date: Tue, 21 Sep 2010 02:44:38 +0900 (JST)
Subject: [ruby-changes:17303] Ruby:r29307 (trunk): * test/pathname/test_pathname.rb (TestPathname#test_mkdir): fix typo.
kazu 2010-09-21 02:44:31 +0900 (Tue, 21 Sep 2010) New Revision: 29307 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29307 Log: * test/pathname/test_pathname.rb (TestPathname#test_mkdir): fix typo. Modified files: trunk/ChangeLog trunk/test/pathname/test_pathname.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 29306) +++ ChangeLog (revision 29307) @@ -1,3 +1,7 @@ +Tue Sep 21 02:42:35 2010 Kazuhiro NISHIYAMA <zn@m...> + + * test/pathname/test_pathname.rb (TestPathname#test_mkdir): fix typo. + Mon Sep 20 23:23:05 2010 Nobuyoshi Nakada <nobu@r...> * dir.c (bracket): get rid of scanning at the end of the pattern Index: test/pathname/test_pathname.rb =================================================================== --- test/pathname/test_pathname.rb (revision 29306) +++ test/pathname/test_pathname.rb (revision 29307) @@ -1192,7 +1192,7 @@ Pathname("d").mkdir assert(File.directory?("d")) Pathname("e").mkdir(0770) - assert(File.directory?("d")) + assert(File.directory?("e")) } end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/