Skip to content

Commit

Permalink
Set rhop in fit_IsothermalHolding() tests to a more plausible value.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcol committed Feb 3, 2025
1 parent 75282bd commit f6b8821
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test_fit_IsothermalHolding.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ test_that("input validation", {
test_that("check functionality", {
testthat::skip_on_cran()

expect_s4_class(fit_IsothermalHolding(input.csv[1], rhop = -7),
expect_s4_class(fit_IsothermalHolding(input.csv[1], rhop = 1e-7),
"RLum.Results")

data <- .import_ThermochronometryData(input.csv[1])
expect_s4_class(fit_IsothermalHolding(data, rhop = -7, mfrow = c(2, 2)),
expect_s4_class(fit_IsothermalHolding(data, rhop = 1e-7, mfrow = c(2, 2)),
"RLum.Results")
})

0 comments on commit f6b8821

Please sign in to comment.