summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-09-29 15:40:22 +0900
committernagachika <nagachika@ruby-lang.org>2022-10-01 20:29:30 +0900
commitdf1cf0a08b1c078ef37e8d2c1a2ac9b0c3fca8b3 (patch)
tree4fd5737a806ef62b622ee67de20c534eca28d9a0
parent0872fe0973e1014cf5035e33b139dbd26b063af4 (diff)
Re-enable example for Europe/Amsterdam pre-1970 time
* https://github.com/ruby/spec/pull/939 * https://github.com/ruby/ruby/pull/6393
-rw-r--r--spec/ruby/core/time/shared/local.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/ruby/core/time/shared/local.rb b/spec/ruby/core/time/shared/local.rb
index 997b7186f1..c4aa7a7ea9 100644
--- a/spec/ruby/core/time/shared/local.rb
+++ b/spec/ruby/core/time/shared/local.rb
@@ -6,18 +6,16 @@ describe :time_local, shared: true do
end
end
-=begin
platform_is_not :windows do
describe "timezone changes" do
- it "correctly adjusts the timezone change to 'CEST' on 'Europe/Amsterdam'" do
+ it "correctly adjusts the timezone change to 'CET' on 'Europe/Amsterdam'" do
with_timezone("Europe/Amsterdam") do
- Time.send(@method, 1940, 5, 16).to_a.should ==
- [0, 40, 1, 16, 5, 1940, 4, 137, true, "CEST"]
+ Time.send(@method, 1970, 5, 16).to_a.should ==
+ [0, 0, 0, 16, 5, 1970, 6, 136, false, "CET"]
end
end
end
end
-=end
end
describe :time_local_10_arg, shared: true do