Skip to content

Commit 3f15ae8

Browse files
committed
fix tests
1 parent 54100af commit 3f15ae8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/testthat/test-dplyr_methods.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,22 +186,22 @@ test_that("group_split splits character columns", {
186186
data(pasilla)
187187
pasilla |>
188188
group_split(condition) |>
189-
length()
189+
length() |>
190190
expect_equal(2)
191191
})
192192

193193
test_that("group_split splits logical comparisons", {
194194
data(pasilla)
195195
pasilla |>
196196
group_split(counts > 0) |>
197-
length()
198-
expect_equal(2)
197+
length() |>
198+
expect_equal(2)
199199
})
200200

201201
test_that("group_split splits with mutliple arguments", {
202202
data(pasilla)
203203
pasilla |>
204204
group_split(condition, counts > 0) |>
205-
length()
206-
expect_equal(4)
205+
length() |>
206+
expect_equal(4)
207207
})

0 commit comments

Comments
 (0)