Skip to content

Commit

Permalink
reshuffle to appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Nov 11, 2024
1 parent 5a63821 commit eb3e551
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cpp/src/arrow/util/value_parsing_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -842,11 +842,10 @@ TEST(TimestampParser, StrptimeZoneOffset) {
"2018-01-01 00:00:00+0000",
"2018-01-01 00:00:00+0100",
#if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
// glibc < 2.28 doesn't support "-0117" timezone offset.
// See also: https://github.com/apache/arrow/issues/43808
# if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 28)
"2018-01-01 00:00:00-0117",
# else
// glibc < 2.28 doesn't support "-0117" timezone offset.
// See also: https://github.com/apache/arrow/issues/43808
# endif
#else
"2018-01-01 00:00:00-0117",
Expand Down

0 comments on commit eb3e551

Please sign in to comment.