Skip to content

Commit a9d4463

Browse files
committed
Remove unused variable
1 parent b8c1942 commit a9d4463

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

R/test-compiled-code.R

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,12 @@ run_cpp_tests <- function(package) {
4949
run_testthat_tests <- get_routine(package, "run_testthat_tests")
5050

5151
output <- ""
52-
tests_passed <- TRUE
53-
5452
catch_error <- NULL
5553

5654
tryCatch(
5755
{
5856
output <- capture_output_lines(
59-
tests_passed <- .Call(run_testthat_tests, TRUE)
57+
.Call(run_testthat_tests, TRUE)
6058
)
6159
},
6260
error = function(e) {

0 commit comments

Comments
 (0)