Skip to content

Commit

Permalink
Disable tests for Time.strftime("%-:::z") with offset = 0
Browse files Browse the repository at this point in the history
This case started to be incompatible from Ruby 3.1.

* #65
* ruby/date#93
  • Loading branch information
dmikurube committed Mar 28, 2023
1 parent fdb69b4 commit fb86e76
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -531,14 +531,14 @@ private static Stream<Arguments> provideInstantArgs() {
"2020-01-01T23:34:56+00:00", "%:::z",
"2020-01-01T23:34:56+00:00", "%0:::z",
"2020-01-01T23:34:56+00:00", "%_:::z",
"2020-01-01T23:34:56+00:00", "%-:::z",
// https://github.com/embulk/embulk-util-rubytime/issues/65 : "2020-01-01T23:34:56+00:00", "%-:::z",
"2020-01-01T23:34:56+00:00", "%_15:::z",
"2020-01-01T23:34:56+00:00", "%015:::z",

"2020-01-01T23:34:56-00:00", "%:::z",
"2020-01-01T23:34:56-00:00", "%0:::z",
"2020-01-01T23:34:56-00:00", "%_:::z",
"2020-01-01T23:34:56-00:00", "%-:::z",
// https://github.com/embulk/embulk-util-rubytime/issues/65 : "2020-01-01T23:34:56-00:00", "%-:::z",
"2020-01-01T23:34:56-00:00", "%_15:::z",
"2020-01-01T23:34:56-00:00", "%015:::z",

Expand Down

0 comments on commit fb86e76

Please sign in to comment.