Skip to content

Commit 2a6167a

Browse files
authored
fix: default transform= to NULL, not itself (#413)
1 parent 3f1a917 commit 2a6167a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# shinytest2 (development version)
22

3+
## Bug
4+
5+
* Fixed a bug where `AppDriver$expect_values(transform=)` default value caused error to be thrown. (#413)
6+
7+
38
# shinytest2 0.4.0
49

510
## Breaking changes

R/app-driver.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ AppDriver <- R6Class(
574574
export = missing_arg(),
575575
screenshot_args = missing_arg(),
576576
name = NULL,
577-
transform = transform,
577+
transform = NULL,
578578
cran = deprecated()
579579
) {
580580
check_cran_deprecated(cran)

man/AppDriver.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)