Skip to content

Commit

Permalink
Merge pull request #678 from nlmixr2/rx450
Browse files Browse the repository at this point in the history
increase tol
  • Loading branch information
mattfidler authored May 25, 2024
2 parents ed33fd1 + 428aee1 commit b4f04c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/testthat/test-rxode-issue-450.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
rxTest({

test_that("Parallel solve vs single vs for; Issue RxODE#450", {
TV_CLr <- 6.54 # L/h, (CLr/F)
TV_CLnr <- 2.39 # L/h, (CLnr/F)
Expand Down Expand Up @@ -119,7 +120,7 @@ rxTest({
row.names(res.id) <- NULL
res2 <- as.data.frame(bar3x[bar3x$sim.id == id,])
row.names(res2) <- NULL
expect_equal(res.id, res2)
expect_equal(res.id, res2, tolerance=1e-4)

res.all = rbind(res.all, res.id)
}
Expand Down

0 comments on commit b4f04c3

Please sign in to comment.