Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblodgett-usgs committed Dec 20, 2024
1 parent 6a3f186 commit f1eabbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-01-parallel.R
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
)
Expand All @@ -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))
}
)
Expand Down

0 comments on commit f1eabbc

Please sign in to comment.