From cc27ed22a713b8c7178b6774a7971d7ba4cbd3ac Mon Sep 17 00:00:00 2001 From: Peter Desmet Date: Thu, 19 Sep 2024 09:28:21 +0200 Subject: [PATCH] Spacing --- tests/testthat/test-utils.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testthat/test-utils.R b/tests/testthat/test-utils.R index 718bf51a..0a905592 100644 --- a/tests/testthat/test-utils.R +++ b/tests/testthat/test-utils.R @@ -60,7 +60,7 @@ test_that("is_url() tests whether path is URL", { }) test_that("get_dot_names() returns the names passed via ...", { - test_fn <- function(...){ + test_fn <- function(...) { get_dot_names(...) } expect_identical(test_fn(a = "1", b = "2"), c("a", "b")) @@ -68,7 +68,7 @@ test_that("get_dot_names() returns the names passed via ...", { test_that("get_dot_names() does not return empty strings for unnamed args passed to ellipsis", { - test_fn <- function(...){ + test_fn <- function(...) { get_dot_names(...) } expect_identical(test_fn(a = "1", "2", b = "3", c = "4"), c("a", "b", "c"))