diff --git a/DESCRIPTION b/DESCRIPTION index fd5b7f1..6896b2c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -22,7 +22,8 @@ Authors@R: c( role = c("aut")), person(given = "Zhian", family = "Kamvar", - email = "zkamvar@umass.edu ", + email = "zkamvar@umass.edu", + comment = c(ORCID = "0000-0003-1458-7108"), role = c("ctb")), person(given = "Becky", family = "Sweger", diff --git a/tests/testthat/test-score_model_out.R b/tests/testthat/test-score_model_out.R index 1c497f7..11a2c50 100644 --- a/tests/testthat/test-score_model_out.R +++ b/tests/testthat/test-score_model_out.R @@ -393,6 +393,7 @@ test_that("score_model_out works with all kinds of interval levels are requested regexp = "must be a number between 0 and 100" ) + suppressWarnings({ expect_warning( score_model_out( model_out_tbl = forecast_outputs |> dplyr::filter(.data[["output_type"]] == "quantile"), @@ -419,6 +420,7 @@ test_that("score_model_out works with all kinds of interval levels are requested ), "To compute the interval coverage for an interval range of" #scoringutils warning ) + }) })