Blame SOURCES/ruby-spec-Fix-tests-on-tzdata-2022b.patch

12267e
From 7e9ec8a20b0f7469b415283d2ec0c22087f8eb2b Mon Sep 17 00:00:00 2001
12267e
From: Jun Aruga <jaruga@redhat.com>
12267e
Date: Wed, 24 Aug 2022 12:02:56 +0200
12267e
Subject: [PATCH] Fix tests with Europe/Amsterdam pre-1970 time on tzdata
12267e
 version 2022b.
12267e
12267e
The Time Zone Database (tzdata) changed the pre-1970 timestamps in some zones
12267e
including Europe/Amsterdam on tzdata version 2022b or later.
12267e
See <https://github.com/eggert/tz/commit/35fa37fbbb152f5dbed4fd5edfdc968e3584fe12>.
12267e
12267e
The tzdata RPM package maintainer on Fedora project suggested changing the Ruby
12267e
test, because the change is intentional.
12267e
See <https://bugzilla.redhat.com/show_bug.cgi?id=2118259#c1>.
12267e
12267e
We use post-1970 time test data to simplify the test.
12267e
---
12267e
 core/time/shared/local.rb | 6 +++---
12267e
 1 file changed, 3 insertions(+), 3 deletions(-)
12267e
12267e
diff --git a/spec/ruby/core/time/shared/local.rb b/spec/ruby/core/time/shared/local.rb
12267e
index 43f331c4c..c4aa7a7ea 100644
12267e
--- a/spec/ruby/core/time/shared/local.rb
12267e
+++ b/spec/ruby/core/time/shared/local.rb
12267e
@@ -8,10 +8,10 @@ describe :time_local, shared: true do
12267e
 
12267e
   platform_is_not :windows do
12267e
     describe "timezone changes" do
12267e
-      it "correctly adjusts the timezone change to 'CEST' on 'Europe/Amsterdam'" do
12267e
+      it "correctly adjusts the timezone change to 'CET' on 'Europe/Amsterdam'" do
12267e
         with_timezone("Europe/Amsterdam") do
12267e
-          Time.send(@method, 1940, 5, 16).to_a.should ==
12267e
-            [0, 40, 1, 16, 5, 1940, 4, 137, true, "CEST"]
12267e
+          Time.send(@method, 1970, 5, 16).to_a.should ==
12267e
+            [0, 0, 0, 16, 5, 1970, 6, 136, false, "CET"]
12267e
         end
12267e
       end
12267e
     end
12267e
-- 
12267e
2.36.1
12267e