From 9d09306db19b043adf0ab041ae04a94a789c5804 Mon Sep 17 00:00:00 2001 From: Joe Thorley Date: Mon, 23 Sep 2024 13:11:26 -0700 Subject: [PATCH] move unstable lnorm_lnorm with censored data to ssdtests --- tests/testthat/test-lnorm-lnorm.R | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tests/testthat/test-lnorm-lnorm.R b/tests/testthat/test-lnorm-lnorm.R index 39dd48cf..686a450e 100644 --- a/tests/testthat/test-lnorm-lnorm.R +++ b/tests/testthat/test-lnorm-lnorm.R @@ -55,16 +55,3 @@ test_that("lnorm_lnorm positive q with extreme large distribution", { meanlog2 = 100.39362, sdlog2 = 2.583824, pmix = 0.1308133 ), 1.41684268426224e+46) }) - -test_that("ssd_fit_dists allows for fits without standard errors lnorm_lnorm", { - data <- ssddata::ccme_boron - data$Other <- data$Conc - data$Conc <- data$Conc / max(data$Conc) - - set.seed(102) - fits <- ssd_fit_dists(data, right = "Other", dists = c("lnorm_lnorm")) - - tidy <- tidy(fits) - expect_s3_class(tidy, "tbl") - expect_snapshot_data(tidy, "lnorm_lnorm_no_se", digits = 3) -})