You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2022/05/16 11:54:51 UTC

[arrow-cookbook] branch main updated: [R] Remove unnecessary extra test which is causing build failure (#209)

This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-cookbook.git


The following commit(s) were added to refs/heads/main by this push:
     new 0a2b582  [R] Remove unnecessary extra test which is causing build failure (#209)
0a2b582 is described below

commit 0a2b5824e032c6db97a2d5ca4660f19ed507f136
Author: Nicola Crane <th...@gmail.com>
AuthorDate: Mon May 16 12:54:47 2022 +0100

    [R] Remove unnecessary extra test which is causing build failure (#209)
---
 r/content/arrays.Rmd | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/r/content/arrays.Rmd b/r/content/arrays.Rmd
index 0767e5e..3b2a7d1 100644
--- a/r/content/arrays.Rmd
+++ b/r/content/arrays.Rmd
@@ -63,11 +63,6 @@ fivenum(as.vector(arrow_array))
 
 test_that("array_fivenum works as expected", {
   
-  # generates both an error and a warning
-  expect_warning(
-    expect_error(fivenum(arrow_array))  
-  )
-  
   expect_identical(
     fivenum(as.vector(arrow_array)),
     c(1, 25.5, 50.5, 75.5, 100)