Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed May 23, 2023
1 parent 6f650d3 commit 61a502a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/testthat/test-clmm.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ test_that("link_inverse", {
})

test_that("get_data", {
expect_identical(nrow(get_data(m1)), 72L)
expect_equal(nrow(get_data(m1)), 72)
expect_identical(
colnames(get_data(m1)),
c("rating", "temp", "contact", "judge")
)
expect_identical(nrow(get_data(m2)), 1847L)
expect_equal(nrow(get_data(m2)), 1847)
expect_identical(colnames(get_data(m2)), c("SURENESS", "PROD", "RESP"))
})

Expand Down Expand Up @@ -137,8 +137,8 @@ test_that("find_terms", {
})

test_that("n_obs", {
expect_identical(n_obs(m1), 72L)
expect_identical(n_obs(m2), 1847L)
expect_equal(n_obs(m1), 72)
expect_equal(n_obs(m2), 1847)
})

test_that("linkfun", {
Expand Down

0 comments on commit 61a502a

Please sign in to comment.