From 64d6e06cee21fde8b1afb50e500b6d13ba98a5ba Mon Sep 17 00:00:00 2001 From: Glenda Date: Thu, 8 Feb 2024 10:11:32 -0700 Subject: [PATCH 1/2] Update test-weather.R [patch] --- 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 fafb13cc..dec0b9f8 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 < 40, na.rm=TRUE)) + expect_true(all(rodeo$preciptotal < 100, na.rm=TRUE)) }) test_that("NDVI data adding correctly", { From abc644518cbdd93390c6166123631978fcfa6c3c Mon Sep 17 00:00:00 2001 From: Glenda Date: Thu, 8 Feb 2024 10:30:23 -0700 Subject: [PATCH 2/2] Update test-weather.R [patch] --- 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 dec0b9f8..2b5477c4 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 < 100, na.rm=TRUE)) + expect_true(all(rodeo$preciptotal < 200, na.rm=TRUE)) }) test_that("NDVI data adding correctly", {