diff --git a/R/expect-constant.R b/R/expect-constant.R index 5fad3e4ee..b19509fa9 100644 --- a/R/expect-constant.R +++ b/R/expect-constant.R @@ -7,7 +7,6 @@ #' #' Attributes are ignored. #' -#' @seealso [is_false()] for complement #' @inheritParams expect_that #' @family expectations #' @examples diff --git a/R/reporter-debug.R b/R/reporter-debug.R index fd3575a62..9cb4f99de 100644 --- a/R/reporter-debug.R +++ b/R/reporter-debug.R @@ -59,7 +59,7 @@ recover2 <- function(start_frame = 1L, end_frame = sys.nframe()) { calls <- calls[start_frame:from] - if (rlang::is_false(peek_option("testthat_format_srcrefs"))) { + if (is_false(peek_option("testthat_format_srcrefs"))) { calls <- lapply(calls, zap_srcref) } calls <- utils::limitedLabels(calls) diff --git a/man/logical-expectations.Rd b/man/logical-expectations.Rd index 5dbc779e4..5d75fbfef 100644 --- a/man/logical-expectations.Rd +++ b/man/logical-expectations.Rd @@ -45,8 +45,6 @@ expect_true(length(a) == 3) expect_equal(length(a), 3) } \seealso{ -\code{\link[=is_false]{is_false()}} for complement - Other expectations: \code{\link{comparison-expectations}}, \code{\link{equality-expectations}},