| 1755 | } |
| 1756 | |
| 1757 | static void CheckErrorDetail(const Status& status) { |
| 1758 | auto detail = FlightStatusDetail::UnwrapStatus(status); |
| 1759 | ASSERT_NE(detail, nullptr) << status.ToString(); |
| 1760 | ASSERT_EQ(detail->code(), FlightStatusCode::Unauthorized); |
| 1761 | ASSERT_EQ(detail->extra_info(), "extra info"); |
| 1762 | } |
| 1763 | |
| 1764 | void ErrorHandlingTest::TestDoPut() { |
| 1765 | // ARROW-16592 |
no test coverage detected