Skip to content

Commit a3684b6

Browse files
Fix formatting issues due to Air 0.10.0 (#694)
1 parent 3e7ccbd commit a3684b6

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

tests/testthat/test-data_match.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,12 +346,11 @@ test_that("data_filter, slicing works with functions", {
346346
out3 <- data_filter(iris, (Sepal.Width == 3.0) & (Species == "setosa"))
347347
expect_identical(nrow(out3), 6L)
348348

349-
# styler: off
349+
# fmt: skip
350350
expect_error(
351351
data_filter(iris, (Sepal.Width = 3.0) & (Species = "setosa")), # nolint
352352
regex = "Filtering did not work"
353353
)
354-
# styler: on
355354
})
356355

357356

tests/testthat/test-data_modify.R

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## styler: off
2-
31
test_that("data_modify works", {
42
data(iris)
53
out <- data_modify(
@@ -1011,5 +1009,3 @@ withr::with_environment(
10111009
expect_identical(out1, out2)
10121010
})
10131011
)
1014-
1015-
## styler: on

0 commit comments

Comments
 (0)