Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfidler committed Dec 3, 2023
1 parent 53bb5e6 commit 991e1f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-piping-ini.R
Original file line number Diff line number Diff line change
Expand Up @@ -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))

})

Expand Down

0 comments on commit 991e1f9

Please sign in to comment.