Skip to content

Commit eea890a

Browse files
committed
Test on Win2022 / Ruby 3.4 too
1 parent 760e38c commit eea890a

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
matrix:
5050
os: [ 'windows-2022' ]
5151
#ruby: [ '2.5', '2.6', '2.7', '3.0', jruby-9.3 ]
52-
ruby: [ '2.7', '3.1', '3.3', '4.0' ]
52+
ruby: [ '2.7', '3.1', '3.4', '4.0' ]
5353
experimental: [ false ]
5454
tz: [ 'UTC', 'Tokyo Standard Time', 'Eastern Standard Time' ]
5555
fail-fast: false

test/eo_time_test.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,10 @@
645645

646646
assert t.to_s, '2007-10-31 19:25:00 -1100'
647647

648-
t1 = in_zone('Europe/Moscow') { t.localtime }
648+
t1 = in_zone('Europe/Moscow') {
649+
t.localtime
650+
.tap { |x| p [ x, x.to_s ] }
651+
}
649652

650653
assert t1.to_s, '2007-11-01 09:25:00 +0300'
651654
assert t1.object_id != t.object_id

0 commit comments

Comments
 (0)