From f1eabbc715e9e299ec44b3cfdec3e52aade6129e Mon Sep 17 00:00:00 2001 From: David Blodgett Date: Fri, 20 Dec 2024 13:22:31 -0600 Subject: [PATCH] . --- tests/testthat/test-01-parallel.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testthat/test-01-parallel.R b/tests/testthat/test-01-parallel.R index ffb9a21..f6590b9 100644 --- a/tests/testthat/test-01-parallel.R +++ b/tests/testthat/test-01-parallel.R @@ -14,7 +14,7 @@ SlowGettingDirectoryStore <- R6::R6Class("SlowGettingDirectoryStore", Sys.sleep(1/5) } # Simulate a slow read such as an HTTP request. - Sys.sleep(1.0/25) + Sys.sleep(1/5) return(super$get_item(key)) } ) @@ -29,7 +29,7 @@ SlowSettingDirectoryStore <- R6::R6Class("SlowSettingDirectoryStore", Sys.sleep(1/5) } # Simulate a slow write such as an HTTP request. - Sys.sleep(1.0/25) + Sys.sleep(1/5) return(super$set_item(key, value)) } )