From 3b871be4b209c180f99f7e6aa8d0c5c27d22effb Mon Sep 17 00:00:00 2001 From: naruse Date: Tue, 4 Dec 2018 07:52:08 +0000 Subject: [PATCH] fix typo of r66177 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66187 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- spec/ruby/core/dir/home_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/ruby/core/dir/home_spec.rb b/spec/ruby/core/dir/home_spec.rb index e08722df88..7e2256e1a1 100644 --- a/spec/ruby/core/dir/home_spec.rb +++ b/spec/ruby/core/dir/home_spec.rb @@ -16,7 +16,7 @@ describe "Dir.home" do 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