ianmcook commented on a change in pull request #9952: URL: https://github.com/apache/arrow/pull/9952#discussion_r610109004
########## File path: r/tests/testthat/test-dplyr.R ########## @@ -421,12 +484,13 @@ test_that("explicit type conversions", { int2dbl = as.double(int), int2int = as.integer(int), int2lgl = as.logical(int), - lgl2chr = toupper(as.character(lgl)), # Arrow returns "true", "false" + lgl2chr = as.character(lgl), # Arrow returns "true", "false" here ... lgl2dbl = as.double(lgl), lgl2int = as.integer(lgl), - lgl2lgl = as.logical(lgl), + lgl2lgl = as.logical(lgl) ) %>% - collect(), + collect() %>% + mutate(lgl2chr = toupper(lgl2chr)), # ... but we need "TRUE", "FALSE" Review comment: Added in 95272bc268a5742ecf3a79828172f0de75801bc7 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org