Skip to content

Commit

Permalink
fix: exclude se.fit parameter from paramtest (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebffischer authored Nov 16, 2023
1 parent 831e5b0 commit 3aa44b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,5 @@ Config/testthat/edition: 3
Encoding: UTF-8
NeedsCompilation: no
Roxygen: list(markdown = TRUE, r6 = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.2.3.9000
Config/Needs/website: rmarkdown

3 changes: 2 additions & 1 deletion tests/testthat/test_paramtest_lme4_classif_glmer.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ test_that("regr.lmer predict", {
"REForm", # alias of re.form
"REform", # alias of re.form
"terms", # unused
"type" # handled internally
"type", # handled internally
"se.fit" # not implemented
)

paramtest = run_paramtest(learner, fun, exclude, tag = "predict")
Expand Down
3 changes: 2 additions & 1 deletion tests/testthat/test_paramtest_lme4_regr_lmer.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ test_that("regr.lmer predict", {
"REForm", # alias of re.form
"REform", # alias of re.form
"terms", # unused
"type" # handled internally
"type", # handled internally
"se.fit" # not implemented
)

paramtest = run_paramtest(learner, fun, exclude, tag = "predict")
Expand Down

0 comments on commit 3aa44b2

Please sign in to comment.