Skip to content

Commit

Permalink
GH-44122: [R] Don't use the new pipe yet (#44123)
Browse files Browse the repository at this point in the history
Swapping out the old pipe for at least a few more months to maintain 4.0 support.
* GitHub Issue: #44122

Authored-by: Jonathan Keane <jkeane@gmail.com>
Signed-off-by: Jonathan Keane <jkeane@gmail.com>
  • Loading branch information
jonkeane committed Sep 15, 2024
1 parent dafc970 commit a5d40d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r/tests/testthat/test-dplyr-summarize.R
Original file line number Diff line number Diff line change
Expand Up @@ -956,8 +956,8 @@ test_that("Summarize with 0 arguments", {
})

test_that("Printing aggregation expressions", {
q <- tbl |>
arrow_table() |>
q <- tbl %>%
arrow_table() %>%
summarize(
total = sum(int, na.rm = TRUE),
prod = prod(int, na.rm = TRUE),
Expand Down

0 comments on commit a5d40d0

Please sign in to comment.