From e59e695a8b8f16f0b747f6add02047e4a0ac87c6 Mon Sep 17 00:00:00 2001 From: Scott Chamberlain Date: Mon, 8 Apr 2024 16:13:24 -0700 Subject: [PATCH] styling --- .lintr | 4 +++- tests/testthat/test-wait.R | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.lintr b/.lintr index 3d4eb22..8ef8d4e 100644 --- a/.lintr +++ b/.lintr @@ -1,2 +1,4 @@ -linters: linters_with_defaults() # see vignette("lintr") +linters: linters_with_defaults( + cyclocomp_linter = NULL + ) encoding: "UTF-8" diff --git a/tests/testthat/test-wait.R b/tests/testthat/test-wait.R index 7f4ae29..1f3a7eb 100644 --- a/tests/testthat/test-wait.R +++ b/tests/testthat/test-wait.R @@ -10,7 +10,9 @@ test_that("wait", { "test initializing" ) - expect_message((out <- wait_for_test()), - "Waiting for") + expect_message( + (out <- wait_for_test()), + "Waiting for" + ) expect_null(out) })