Skip to content

Commit

Permalink
removed return by value
Browse files Browse the repository at this point in the history
removed return by value
  • Loading branch information
siddhesh195 committed Aug 7, 2024
1 parent 9c37ee0 commit 576b1ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/testthat/test-renderer1-knit-print.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ get_circles <- function(html=getHTML()) {

get_elements <- function(id){

list(a178=runtime_evaluate_helper(id=id,class_name='show_hide_selector_widgets',list_num=0,return.value=TRUE),
b934=runtime_evaluate_helper(id=id,class_name='show_hide_selector_widgets',list_num=0,return.value=TRUE),
show_hide=runtime_evaluate_helper(id=id,class_name='table.legend tr.label_variable',list_num=0,return.value=TRUE),
widget=runtime_evaluate_helper(id=id,class_name='table.legend tr.label_variable',list_num=1,return.value=TRUE))
list(a178=runtime_evaluate_helper(id=id,class_name='show_hide_selector_widgets',list_num=0),
b934=runtime_evaluate_helper(id=id,class_name='show_hide_selector_widgets',list_num=1),
show_hide=runtime_evaluate_helper(id=id,class_name='table.legend tr.label_variable',list_num=0),
widget=runtime_evaluate_helper(id=id,class_name='table.legend tr.label_variable',list_num=1))
}

plot1top <- get_elements("plot1top")
Expand Down

0 comments on commit 576b1ce

Please sign in to comment.