Skip to content

Commit

Permalink
MINOR: [R] Remove trailing whitespace in flight tests (#13952)
Browse files Browse the repository at this point in the history
After #13267 there is some trailing whitespace left over in one of the files.

Authored-by: Dewey Dunnington <dewey@voltrondata.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
paleolimbot committed Aug 24, 2022
1 parent 9b23a70 commit 3c13dc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r/tests/testthat/test-python-flight.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ if (process_is_running("demo_flight_server")) {
regexp = 'data must be a "data.frame", "Table", or "RecordBatch"'
)
})

test_that("flight_put with max_chunksize", {
flight_put(client, example_data, path = flight_obj, max_chunksize = 1)
expect_true(flight_path_exists(client, flight_obj))
expect_true(flight_obj %in% list_flights(client))
expect_warning(
flight_put(client, record_batch(example_data), path = flight_obj, max_chunksize = 123),
flight_put(client, record_batch(example_data), path = flight_obj, max_chunksize = 123),
regexp = "`max_chunksize` is not supported for flight_put with RecordBatch"
)
expect_error(
Expand Down

0 comments on commit 3c13dc4

Please sign in to comment.