Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Nov 20, 2024
1 parent d21d5da commit c7b355e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-find_terms.R
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ test_that("find_terms, - box cox", {
model <- lm(I((mpg^0.7 - 1) / 0.7) ~ hp, data = mtcars)
expect_identical(
find_terms(model),
list(response = c("I((mpg^0.7 - 1)/0.7)", "0.7"), conditional = "hp")
list(response = "I((mpg^0.7 - 1)/0.7)", conditional = "hp")
)
model <- lm((mpg ^ -1.3 - 1) / -1.3 ~ hp, data = mtcars)
expect_identical(
Expand Down

0 comments on commit c7b355e

Please sign in to comment.