Skip to content

Commit

Permalink
fix: fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedha Viyash authored and Vedha Viyash committed Nov 16, 2023
1 parent 9bbaa5f commit a6c82d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/testthat/test-data_extract_multiple_srv.R
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ testthat::test_that("data_extract_multiple_srv accepts datasets as FilteredData

mixed_data_list <- list(IRIS = reactive(iris), IRIS2 = iris)
mixed_join_keys_list <- teal.data::join_keys(
teal.data::join_key("IRIS", "IRIS", character(0)),
teal.data::join_key("IRIS2", "IRIS2", character(0)),
teal.data::join_key("IRIS", "IRIS2", character(0))
teal.data::join_key("IRIS", "IRIS", "id"),
teal.data::join_key("IRIS2", "IRIS2", "id"),
teal.data::join_key("IRIS", "IRIS2", "id")
)

shiny::withReactiveDomain(
Expand Down

0 comments on commit a6c82d4

Please sign in to comment.