From 6744e704b9152f0ac85e5de5a27fd3a459161149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ver=C3=ADssimo?= <211358+averissimo@users.noreply.github.com> Date: Thu, 11 Apr 2024 12:55:05 +0200 Subject: [PATCH] Adds double colon prefix to `platform_variant()` (#1198) # Pull Request Fixes #1197 #### Changes description - Adds the `shinytest2` double colon prefix --- R/TealAppDriver.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/TealAppDriver.R b/R/TealAppDriver.R index 280bb56b73..835be00b2d 100644 --- a/R/TealAppDriver.R +++ b/R/TealAppDriver.R @@ -58,7 +58,7 @@ TealAppDriver <- R6::R6Class( # nolint: object_name. super$initialize( app_dir = shinyApp(app$ui, app$server), name = "teal", - variant = platform_variant(), + variant = shinytest2::platform_variant(), timeout = rlang::maybe_missing(timeout, 20 * 1000), load_timeout = rlang::maybe_missing(load_timeout, 100 * 1000), ...