Skip to content

Commit

Permalink
Merge branch 'main' into 1304-handover-error@main
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo authored Sep 30, 2024
2 parents 3110363 + 2a7d3f9 commit 62a1347
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Type: Package
Package: teal
Title: Exploratory Web Apps for Analyzing Clinical Trials Data
Version: 0.15.2.9065
Date: 2024-09-26
Version: 0.15.2.9066
Date: 2024-09-27
Authors@R: c(
person("Dawid", "Kaledkowski", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-9533-457X")),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# teal 0.15.2.9065
# teal 0.15.2.9066

### New features

Expand Down
6 changes: 3 additions & 3 deletions tests/testthat/test-module_teal.R
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ testthat::describe("srv_teal lockfile", {
),
expr = {
iter <- 1
while (!file.exists(renv_filename) && iter <= 100) {
Sys.sleep(0.25)
iter <- iter + 1 # max wait time is 25 seconds
while (!file.exists(renv_filename) && iter <= 1000) {
Sys.sleep(0.5)
iter <- iter + 1 # max wait time is 500 seconds
}
testthat::expect_true(file.exists(renv_filename))
}
Expand Down

0 comments on commit 62a1347

Please sign in to comment.