From eb6b46576ca98d6f5b5f33870ce7d6769f8f00c6 Mon Sep 17 00:00:00 2001 From: Robert William Schlegel Date: Wed, 27 Mar 2024 16:36:36 +0000 Subject: [PATCH] Pushing codecov back up to 100% --- tests/testthat/test-ts2clm.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-ts2clm.R b/tests/testthat/test-ts2clm.R index 118b14c..03171dd 100644 --- a/tests/testthat/test-ts2clm.R +++ b/tests/testthat/test-ts2clm.R @@ -153,7 +153,7 @@ test_that("hourly functions are acknowledged and used", { expect_equal(ncol(res), 6) expect_equal(nrow(res), 359400) ts_WA_hourly_NA <- ts_WA_hourly; ts_WA_hourly_NA$temp[502] <- NA - res_var_NA <- ts2clm(ts_WA_hourly_NA, climatologyPeriod = c("1983-01-01", "2012-12-31"), + res_var_NA <- ts2clm(ts_WA_hourly_NA, climatologyPeriod = c("1983-01-01", "2012-12-31"), maxPadLength = 2, windowHalfWidth = 5*24, smoothPercentileWidth = 31*24, var = TRUE, returnDF = FALSE) expect_is(res_var_NA, "data.table") expect_equal(ncol(res_var_NA), 7)