From 991e1f98ab6a811eb12cc4f02dd4a9f825d6f85d Mon Sep 17 00:00:00 2001 From: "Matthew L. Fidler" Date: Sun, 3 Dec 2023 10:02:06 -0600 Subject: [PATCH] Fix tests --- tests/testthat/test-piping-ini.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testthat/test-piping-ini.R b/tests/testthat/test-piping-ini.R index bf27620f7..b7f655d0a 100644 --- a/tests/testthat/test-piping-ini.R +++ b/tests/testthat/test-piping-ini.R @@ -679,11 +679,11 @@ test_that("change ini type with ~", { mod3 <- mod2 |> ini( ~ lvc) - expect_equal(mod3$omega, lotri(lcl ~ 1, lvc ~ 1)) + expect_equal(mod3$omega, NULL) mod4 <- mod3 |> ini( ~ lvc) - expect_equal(mod4$omega, lotri(lcl ~ 1)) + expect_equal(mod4$omega, lotri(lvc ~ 1)) })