Skip to content

Commit

Permalink
remove unnecessary asignment
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardJActon committed Oct 13, 2024
1 parent bd52c7d commit 72f930e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-renv_helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ testthat::test_that("Testing `renv2nix()`", {

testthat::test_that("Testing `renv_lock_r_ver()`", {
tmpf <- tempfile()
synthetic_renv_lock_example <- jsonlite::write_json(list(R = list(Version = "4.4.1")), tmpf, auto_unbox = TRUE)
jsonlite::write_json(list(R = list(Version = "4.4.1")), tmpf, auto_unbox = TRUE)
testthat::expect_equal(renv_lock_r_ver(renv_lock_path = tmpf), "4.4.1")
unlink(tmpf)
})
Expand Down

0 comments on commit 72f930e

Please sign in to comment.