Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jul 24, 2024
1 parent 88bf40c commit eba07b2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions python/pyarrow/tests/test_flight.py
Original file line number Diff line number Diff line change
Expand Up @@ -945,8 +945,13 @@ def test_eq():
flight.FlightEndpoint(
b"foo", [flight.Location("grpc+tls://localhost:1234")], None, b'')
),
lambda: (flight.FlightEndpoint(b"foo", [], pa.scalar("2023-04-05T12:34:56").cast(pa.timestamp("s")), b''),
flight.FlightEndpoint(b"foo", [], pa.scalar("2023-04-05T12:34:56.789").cast(pa.timestamp("ms")), b'')),
lambda: (
flight.FlightEndpoint(
b"foo", [], pa.scalar("2023-04-05T12:34:56").cast(pa.timestamp("s")),
b''),
flight.FlightEndpoint(
b"foo", [],
pa.scalar("2023-04-05T12:34:56.789").cast(pa.timestamp("ms")), b'')),
lambda: (flight.FlightEndpoint(b"foo", [], None, b''),
flight.FlightEndpoint(b"foo", [], None, b'meta')),
lambda: (
Expand Down

0 comments on commit eba07b2

Please sign in to comment.