This is an automated email from the ASF dual-hosted git repository.
jonkeane pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new a5d40d0324 GH-44122: [R] Don't use the new pipe yet (#44123)
a5d40d0324 is described below
commit a5d40d0324721f2004fa93a1d12260c7516c4813
Author: Jonathan Keane <[email protected]>
AuthorDate: Sun Sep 15 17:46:44 2024 +0200
GH-44122: [R] Don't use the new pipe yet (#44123)
Swapping out the old pipe for at least a few more months to maintain 4.0
support.
* GitHub Issue: #44122
Authored-by: Jonathan Keane <[email protected]>
Signed-off-by: Jonathan Keane <[email protected]>
---
r/tests/testthat/test-dplyr-summarize.R | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/r/tests/testthat/test-dplyr-summarize.R
b/r/tests/testthat/test-dplyr-summarize.R
index 8d2a209df5..1768d7534e 100644
--- a/r/tests/testthat/test-dplyr-summarize.R
+++ b/r/tests/testthat/test-dplyr-summarize.R
@@ -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),