Skip to content

Commit

Permalink
Merge pull request #321 from bbolker/glmmTMB_gauss_update
Browse files Browse the repository at this point in the history
  • Loading branch information
seananderson committed Mar 17, 2024
2 parents 96e5a92 + 2e931ef commit baf8bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-5-residuals.R
Expand Up @@ -251,7 +251,7 @@ test_that("Pearson residuals work", {
m1 <- glmmTMB::glmmTMB(prop ~ 1, data = dat, family = gaussian())
r <- residuals(m, type = "pearson")
r1 <- residuals(m1, type = "pearson")
expect_equal(as.numeric(r), as.numeric(r1))
expect_equal(as.numeric(r), as.numeric(r1), tolerance = 1e-6)

# gamma
set.seed(1)
Expand Down

0 comments on commit baf8bc5

Please sign in to comment.