ianmcook commented on a change in pull request #9999: URL: https://github.com/apache/arrow/pull/9999#discussion_r626890421
########## File path: r/tests/testthat/test-dplyr-mutate.R ########## @@ -32,59 +47,23 @@ test_that("mutate() is lazy", { ) }) -test_that("basic mutate", { - expect_dplyr_equal( - input %>% - select(int, chr) %>% - filter(int > 5) %>% - mutate(int = int + 6L) %>% - collect(), - tbl - ) -}) - -test_that("mutate() with NULL inputs", { - expect_dplyr_equal( - input %>% - mutate(int = NULL) %>% - collect(), - tbl - ) -}) +# similar to https://github.com/tidyverse/dplyr/blob/master/tests/testthat/test-mutate.r#L1-L10 Review comment: @pachamaltese It looks like you fixed all the other URLs except this particular one -- 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