From ec14861f0d7a1e99d3e6667dee2f4c9cc426d5f3 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 5 Jan 2023 20:23:57 +0100 Subject: Update to ruby/spec@7e680fa --- spec/ruby/core/dir/home_spec.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'spec/ruby/core/dir') diff --git a/spec/ruby/core/dir/home_spec.rb b/spec/ruby/core/dir/home_spec.rb index 95bb00ad03..bbe347ba9e 100644 --- a/spec/ruby/core/dir/home_spec.rb +++ b/spec/ruby/core/dir/home_spec.rb @@ -33,7 +33,7 @@ describe "Dir.home" do end platform_is :windows do - ruby_version_is "3.0" do + ruby_version_is "3.2" do it "returns the home directory with forward slashs and as UTF-8" do ENV['HOME'] = "C:\\rubyspäc\\home" home = Dir.home @@ -50,7 +50,8 @@ describe "Dir.home" do ENV['HOMEPATH'] = "\\rubyspec\\home1" Dir.home.should == "C:/rubyspec/home1" ENV['USERPROFILE'] = "C:\\rubyspec\\home2" - Dir.home.should == "C:/rubyspec/home2" + # https://bugs.ruby-lang.org/issues/19244 + # Dir.home.should == "C:/rubyspec/home2" ENV['HOME'] = "C:\\rubyspec\\home3" Dir.home.should == "C:/rubyspec/home3" ensure -- cgit v1.2.3