From e2c16cd895ba7a3c88f08ba2f934b967d486b081 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 17 Oct 2023 11:33:04 +0200 Subject: [PATCH] fix --- tests/testthat/test-check_autocorrelation.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-check_autocorrelation.R b/tests/testthat/test-check_autocorrelation.R index b389f3985..f70617565 100644 --- a/tests/testthat/test-check_autocorrelation.R +++ b/tests/testthat/test-check_autocorrelation.R @@ -3,5 +3,5 @@ test_that("check_autocorrelation", { m <- lm(mpg ~ wt + cyl + gear + disp, data = mtcars) set.seed(123) out <- check_autocorrelation(m) - expect_equal(as.vector(out), 0.316, ignor_attr = TRUE, tolerance = 1e-2) + expect_equal(as.vector(out), 0.316, ignore_attr = TRUE, tolerance = 1e-2) })