From a370fbebb4a55899f076ad8501c962c2dffdc141 Mon Sep 17 00:00:00 2001 From: equitable-equations Date: Sun, 6 Oct 2024 10:07:46 -0500 Subject: [PATCH] suppress messages in test --- tests/testthat/test-transect_list_glance.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-transect_list_glance.R b/tests/testthat/test-transect_list_glance.R index b1b66be..a0b2a1c 100644 --- a/tests/testthat/test-transect_list_glance.R +++ b/tests/testthat/test-transect_list_glance.R @@ -14,7 +14,7 @@ test_that("transect_list_glance works", { test_list <- suppressMessages(download_transect_list(63, id %in% test_vec)) if (length(test_list) != 0) { - test_df <- transect_list_glance(test_list) + test_df <- suppressMessages(transect_list_glance(test_list)) expect_equal(ncol(test_df), 54) expect_equal(typeof(test_df$total_mean_c), "double")