Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Oct 19, 2024
1 parent a494b6c commit 856e9ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-GLMMadaptive.R
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ test_that("detect custom families", {
# everyone has a baseline measurement, and then measurements at random follow-up times
DF <- data.frame(
id = rep(seq_len(n), each = K),
time = replicate(n, c(0, sort(runif(K - 1, 0, t_max)))),
time = as.vector(replicate(n, c(0, sort(runif(K - 1, 0, t_max))))),
sex = rep(gl(2, n / 2, labels = c("male", "female")), each = K)
)

Expand Down

0 comments on commit 856e9ad

Please sign in to comment.