ruby-changes:53967
From: naruse <ko1@a...>
Date: Tue, 4 Dec 2018 16:52:14 +0900 (JST)
Subject: [ruby-changes:53967] naruse:r66187 (trunk): fix typo of r66177
naruse 2018-12-04 16:52:08 +0900 (Tue, 04 Dec 2018) New Revision: 66187 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66187 Log: fix typo of r66177 Modified files: trunk/spec/ruby/core/dir/home_spec.rb Index: spec/ruby/core/dir/home_spec.rb =================================================================== --- spec/ruby/core/dir/home_spec.rb (revision 66186) +++ spec/ruby/core/dir/home_spec.rb (revision 66187) @@ -16,7 +16,7 @@ describe "Dir.home" do https://github.com/ruby/ruby/blob/trunk/spec/ruby/core/dir/home_spec.rb#L16 platform_is :solaris do it "returns the named user's home directory, from the user database, as a string if called with an argument" do - Dir.home(ENV['USER']).should == `getent passwd ~#{ENV['USER']}|cut -d: -f6`.chomp + Dir.home(ENV['USER']).should == `getent passwd #{ENV['USER']}|cut -d: -f6`.chomp end end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/