You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by jo...@apache.org on 2021/08/08 06:16:35 UTC

[arrow] branch master updated: MINOR: [R] Remove skip from write_csv_arrow() following ARROW-12540

This is an automated email from the ASF dual-hosted git repository.

jonkeane pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 630d85c  MINOR: [R] Remove skip from write_csv_arrow() following ARROW-12540
630d85c is described below

commit 630d85c4fa9af234fe148e881bf5f9b003563767
Author: Neal Richardson <ne...@gmail.com>
AuthorDate: Sun Aug 8 08:15:08 2021 +0200

    MINOR: [R] Remove skip from write_csv_arrow() following ARROW-12540
    
    Closes #10891 from nealrichardson/write-csv-date
    
    Authored-by: Neal Richardson <ne...@gmail.com>
    Signed-off-by: Jonathan Keane <jk...@gmail.com>
---
 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 db8bb30..cfb0cd2 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)