Skip to content

Commit

Permalink
Remove tibble from imports to address NOTE
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel- committed Mar 15, 2019
1 parent 3ade1b2 commit 70a5c08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions DESCRIPTION
Expand Up @@ -14,8 +14,7 @@ Imports:
magrittr (>= 1.5),
dplyr (>= 0.8.0),
purrr (>= 0.2.2),
Rcpp,
tibble
Rcpp
Suggests:
testthat,
covr
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/test-rows.R
Expand Up @@ -201,7 +201,7 @@ test_that("error is thrown when no columns to map", {
})

test_that("grouping list-columns are copied (#9)", {
df <- tibble::tibble(x = as.list(1:2))
exp <- tibble::tibble(x = list(1L, 2L), .out = list(NA, NA))
df <- dplyr::tibble(x = as.list(1:2))
exp <- dplyr::tibble(x = list(1L, 2L), .out = list(NA, NA))
expect_identical(by_row(df, ~NA), exp)
})

0 comments on commit 70a5c08

Please sign in to comment.