From 4eb68c89aa8c2f2078fa43e2b3ae7ed913f67b2a Mon Sep 17 00:00:00 2001 From: Pat Dumandan Date: Wed, 26 Jun 2024 10:35:09 -0400 Subject: [PATCH] increase preciptotal max limit [minor] --- testthat/test-weather.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testthat/test-weather.R b/testthat/test-weather.R index efb54aa9..1caf0a32 100644 --- a/testthat/test-weather.R +++ b/testthat/test-weather.R @@ -119,7 +119,7 @@ test_that("Regional Precipitation ok", { expect_true(all(sansimon$prcp >= 0, na.rm=TRUE)) expect_true(all(sansimon$prcp < 70, na.rm=TRUE)) expect_true(all(rodeo$preciptotal >= 0, na.rm=TRUE)) - expect_true(all(rodeo$preciptotal < 500, na.rm=TRUE)) + expect_true(all(rodeo$preciptotal < 600, na.rm=TRUE)) }) test_that("NDVI data adding correctly", {