Skip to content

Commit

Permalink
Fix test for CRAN R-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Nov 6, 2023
1 parent 1d1719d commit 26b9fb5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: drake
Title: A Pipeline Toolkit for Reproducible Computation at Scale
Version: 7.13.6
Version: 7.13.7
Authors@R: c(
person(
given = c("William", "Michael"),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 7.13.7

* Fix test for CRAN.

# Version 7.13.6

* Migrate to the new interface in `clustermq` 0.9.0 (@mschubert).
Expand Down
3 changes: 2 additions & 1 deletion tests/testthat/test-6-analysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ test_with_dir("dollar sign (#938)", {
)
}
out <- sort(drake_deps(f)$globals)
exp <- sort(c("diagnose", "%||%"))
out <- out[out == make.names(out, unique = FALSE)]
exp <- "diagnose"
expect_equal(out, exp)
})

Expand Down

0 comments on commit 26b9fb5

Please sign in to comment.