From 514a320d5920923da583990a64f9804697fad507 Mon Sep 17 00:00:00 2001 From: Neal Richardson Date: Thu, 5 Aug 2021 20:58:11 -0400 Subject: [PATCH] MINOR: [R] Remove skip from write_csv_arrow() following ARROW-12540 --- r/tests/testthat/test-csv.R | 2 -- 1 file changed, 2 deletions(-) diff --git a/r/tests/testthat/test-csv.R b/r/tests/testthat/test-csv.R index db8bb30585b..cfb0cd228b9 100644 --- a/r/tests/testthat/test-csv.R +++ b/r/tests/testthat/test-csv.R @@ -274,8 +274,6 @@ test_that("Write a CSV file with header", { tbl_in <- read_csv_arrow(csv_file) expect_identical(tbl_in, tbl_no_dates) - skip("Doesn't yet work with date columns due to ARROW-12540") - tbl_out <- write_csv_arrow(tbl, csv_file) expect_true(file.exists(csv_file)) expect_identical(tbl_out, tbl)