Skip to content

Commit

Permalink
Don't allow tolerance for integer lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
PietrH committed Nov 10, 2023
1 parent 3af4488 commit 94fad6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-get_cam_op.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ test_that("output matrix has sessions addded to locations as rownames", {
sep = "__SESS_"
)
n_locations <- length(mica_sessions$data$deployments$locationName)
expect_equal(nrow(cam_op_matrix), n_locations)
expect_identical(nrow(cam_op_matrix), n_locations)
expect_identical(row.names(cam_op_matrix), locations_sessions)
})

Expand Down

0 comments on commit 94fad6b

Please sign in to comment.