From 773166e3bed8040cf2fe9f98bcd5e9efbccfbb79 Mon Sep 17 00:00:00 2001 From: duanx9 Date: Thu, 26 Oct 2023 08:01:04 +0000 Subject: [PATCH] turn off partial match options (#665) --- tests/testthat/setup.R | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/testthat/setup.R diff --git a/tests/testthat/setup.R b/tests/testthat/setup.R new file mode 100644 index 000000000..0f095a69b --- /dev/null +++ b/tests/testthat/setup.R @@ -0,0 +1,7 @@ +withr::local_options( + list( + warnPartialMatchDollar = TRUE, + warnPartialMatchArgs = TRUE, + warnPartialMatchAttr = TRUE + ) +)