Skip to content

Commit

Permalink
Try a different value
Browse files Browse the repository at this point in the history
  • Loading branch information
keller-mark committed Jun 21, 2024
1 parent abed553 commit 6e21e06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-parallel.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SlowGettingDirectoryStore <- R6::R6Class("SlowGettingDirectoryStore",
public = list(
get_item = function(key) {
# Simulate a slow read such as an HTTP request.
Sys.sleep(1.0/25.0)
Sys.sleep(1.0/10.0)
return(super$get_item(key))
}
)
Expand All @@ -16,7 +16,7 @@ SlowSettingDirectoryStore <- R6::R6Class("SlowSettingDirectoryStore",
public = list(
set_item = function(key, value) {
# Simulate a slow write such as an HTTP request.
Sys.sleep(1.0/25.0)
Sys.sleep(1.0/10.0)
return(super$set_item(key, value))
}
)
Expand Down

0 comments on commit 6e21e06

Please sign in to comment.