From 91d89c7d2d787e80f3f7a9de71457c43e5acba9c Mon Sep 17 00:00:00 2001 From: Gang Wu Date: Fri, 17 Feb 2023 12:29:14 +0800 Subject: [PATCH] GH-34232: [R] Fix AMD64 Ubuntu 20.04 R 4.2 CI --- r/tests/testthat/test-io.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r/tests/testthat/test-io.R b/r/tests/testthat/test-io.R index 39cfe6e5e68..b4780af75dd 100644 --- a/r/tests/testthat/test-io.R +++ b/r/tests/testthat/test-io.R @@ -71,7 +71,7 @@ test_that("make_readable_file() works for non-filesystem URLs", { skip_if_offline() readable_file <- make_readable_file( - "https://github.com/apache/arrow/raw/master/r/inst/v0.7.1.parquet" + "https://github.com/apache/arrow/raw/main/r/inst/v0.7.1.parquet" ) expect_r6_class(readable_file, "InputStream") expect_identical(rawToChar(as.raw(readable_file$Read(3))), "PAR")