From 70a5c086d9d075f34f191fecef4c362a00c280ee Mon Sep 17 00:00:00 2001 From: Lionel Henry Date: Fri, 15 Mar 2019 19:09:40 +0100 Subject: [PATCH] Remove tibble from imports to address NOTE --- DESCRIPTION | 3 +-- tests/testthat/test-rows.R | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index a9db808..c716e5a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -14,8 +14,7 @@ Imports: magrittr (>= 1.5), dplyr (>= 0.8.0), purrr (>= 0.2.2), - Rcpp, - tibble + Rcpp Suggests: testthat, covr diff --git a/tests/testthat/test-rows.R b/tests/testthat/test-rows.R index ed721ac..27bc08a 100644 --- a/tests/testthat/test-rows.R +++ b/tests/testthat/test-rows.R @@ -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) })