Skip to content

Commit d665377

Browse files
committed
fix
1 parent 6ad82d6 commit d665377

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: parameters
33
Title: Processing of Model Parameters
4-
Version: 0.28.2.4
4+
Version: 0.28.2.5
55
Authors@R:
66
c(person(given = "Daniel",
77
family = "Lüdecke",

R/equivalence_test.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,9 @@ equivalence_test.estimate_means <- function(
430430

431431
# ==== (adjusted) p-values for tests ====
432432

433-
out$p <- .add_p_to_equitest(x, ci, range, vcov = vcov, vcov_args = vcov_args, ...)
433+
if (!inherits(x, "estimate_means")) {
434+
out$p <- .add_p_to_equitest(x, ci, range, vcov = vcov, vcov_args = vcov_args, ...)
435+
}
434436

435437
attr(out, "rope") <- range
436438
attr(out, "object_name") <- insight::safe_deparse_symbol(substitute(x))

0 commit comments

Comments
 (0)