Skip to content

Commit

Permalink
ARROW-14958: [Python] Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Feb 28, 2022
1 parent 9b23aa0 commit ebe5dc2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/pyarrow/tests/test_flight.py
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,8 @@ def test_cancel_do_get():
FlightClient(('localhost', server.port)) as client:
reader = client.do_get(flight.Ticket(b'ints'))
reader.cancel()
with pytest.raises(flight.FlightCancelledError, match="(?i).*cancel.*"):
with pytest.raises(flight.FlightCancelledError,
match="(?i).*cancel.*"):
reader.read_chunk()


Expand Down

0 comments on commit ebe5dc2

Please sign in to comment.