Skip to content

Commit 7571bf3

Browse files
committed
style: styler (GHA)
1 parent 7eb0e4a commit 7571bf3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/testthat/test-key_colnames.R

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ test_that("`key_colnames` on non-`epi_df`-like tibbles works as expected", {
77
)
88
# `geo_keys`, `other_keys`, `time_keys` are mandatory:
99
expect_error(key_colnames(k1k2_tbl, other_keys = c("k1", "k2"), time_keys = character()),
10-
regexp = '"geo_keys" is missing')
10+
regexp = '"geo_keys" is missing'
11+
)
1112
expect_error(key_colnames(k1k2_tbl, geo_keys = character(), time_keys = character()),
12-
regexp = '"other_keys" is missing')
13+
regexp = '"other_keys" is missing'
14+
)
1315
expect_error(key_colnames(k1k2_tbl, geo_keys = character(), other_keys = c("k1", "k2")),
14-
regexp = '"time_keys" is missing')
16+
regexp = '"time_keys" is missing'
17+
)
1518

1619
# Manually specifying keys that aren't there is an error:
1720
expect_error(

0 commit comments

Comments
 (0)