From 60870948b62b0969bf5c99c18e68a601cbfbd889 Mon Sep 17 00:00:00 2001 From: Jan Marvin Garbuszus Date: Mon, 13 Jan 2025 13:05:44 +0100 Subject: [PATCH] [test] fix lintr --- tests/testthat/test-read_xlsb.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-read_xlsb.R b/tests/testthat/test-read_xlsb.R index 2a0757c21..a409161f5 100644 --- a/tests/testthat/test-read_xlsb.R +++ b/tests/testthat/test-read_xlsb.R @@ -190,7 +190,7 @@ test_that("xlsb formula line breaks are handled", { add_cell_style(dims = "B1", wrap_text = TRUE)$ set_row_heights(rows = 1, heights = 30) - wb2 <- wb_load("/tmp/line_break.xlsb", debug = F) + wb2 <- wb_load("/tmp/line_break.xlsb", debug = TRUE) exp <- "IF( A1= 1,\"Value \n\"&A1, )" fml2 <- wb2$to_df(show_formula = TRUE, col_names = FALSE)[1, "B"] expect_equal(exp, fml2)