Relax test as we've already confirmed throttle is updating. Only required final value expectation (#4218)

This commit is contained in:
Barret Schloerke
2025-05-23 13:43:03 -04:00
committed by GitHub
parent ca41c0831b
commit 159e771ac7

View File

@@ -1307,7 +1307,7 @@ for (do_priming in c(TRUE, FALSE)) {
# dr should've fired, and we should have converged on the right answer.
expect_identical(dr_fired, 2)
isolate(expect_identical(rv$a, dr()))
expect_identical(tr_fired, 4)
# be sure tr() converged on the right answer; (We've already confirmed throttle-like behavior above)
isolate(expect_identical(rv$a, tr()))
})
}