From ab3b8cfb4f7ada90ef0330ba03cad6d9713cc60a Mon Sep 17 00:00:00 2001 From: Zelos Zhu Date: Wed, 30 Aug 2023 19:21:29 +0000 Subject: [PATCH] chore: #1960 fix lint --- tests/testthat/test-user_utils.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-user_utils.R b/tests/testthat/test-user_utils.R index a3ef1d427c..5f6d44b060 100644 --- a/tests/testthat/test-user_utils.R +++ b/tests/testthat/test-user_utils.R @@ -67,7 +67,7 @@ test_that("convert_na_to_blanks Test 6: attributes are preserved when converting # convert_na_to_blanks.data.frame ---- ## Test 7: `NA` are turned into blank strings inside data frames ---- -test_that("convert_na_to_blanks.data.frame Test 7: `NA` are turned into blank strings inside data frames", { +test_that("convert_na_to_blanks.data.frame Test 7: `NA` are turned into blank strings inside data frames", { # nolint input <- tibble::tibble( a = structure(c("a", "b", NA, "c"), label = "A"), b = structure(c(1, NA, 21, 9), label = "B"),