Skip to content

Commit

Permalink
tests: rename test
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Dec 1, 2023
1 parent da3c100 commit c15c106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-teal_data_module-eval_code.R
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ testthat::test_that("eval_code.teal_data_module propagates error from the origin
})


testthat::test_that("eval_code.teal_data_module does not execute on anything other than `teal_data` or `error`", {
testthat::test_that("eval_code.teal_data_module does not execute on a object (other than `teal_data` or `error`)", {
testthat::local_mocked_bindings(
getDefaultReactiveDomain = function() shiny::MockShinySession$new(),
.package = "shiny"
Expand All @@ -187,7 +187,7 @@ testthat::test_that("eval_code.teal_data_module does not execute on anything oth
ui = function(id) div(),
server = function(id) {
shiny::moduleServer(id, function(input, output, session) {
reactive("I am a string")
reactive(list())
})
}
)
Expand Down

0 comments on commit c15c106

Please sign in to comment.