You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recent update of {waldo} to drop {tibble} as a required package caused this test to break for us (because now {tibble} needs to be included intentionally for testing).
The failure mode is pretty opaque:
══ Failed tests ════════════════════════════════════════════════════════════════
── Failure (test-file.R:42:7): file_info: can be subset as a tibble ────────────
`x` inherits from 'data.frame' not 'tbl_df'.
Suggestions:
skip_if_not_installed("tibble")
Write requireNamespace("tibble") clearly in the test body to make the connection to {tibble} crystal clear
Use withr::local_options(list(fs.use_tibble=FALSE)) to make this test independent of {tibble}:
fs/tests/testthat/test-file.R
Line 42 in 8d40528
Recent update of {waldo} to drop {tibble} as a required package caused this test to break for us (because now {tibble} needs to be included intentionally for testing).
The failure mode is pretty opaque:
Suggestions:
skip_if_not_installed("tibble")
requireNamespace("tibble")
clearly in the test body to make the connection to {tibble} crystal clearwithr::local_options(list(fs.use_tibble=FALSE))
to make this test independent of {tibble}:fs/R/utils.R
Lines 135 to 139 in 8d40528
The text was updated successfully, but these errors were encountered: