Skip to content

Commit 609864b

Browse files
committed
WS
1 parent f847337 commit 609864b

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

R/expect-setequal.R

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,7 @@ expect_setequal <- function(object, expected) {
3737
expect_setequal_("Expected %s to have the same values as %s.", act, exp)
3838
}
3939

40-
expect_setequal_ <- function(
41-
msg,
42-
act,
43-
exp,
44-
trace_env = caller_env()
45-
) {
40+
expect_setequal_ <- function(msg, act, exp, trace_env = caller_env()) {
4641
act_miss <- unique(act$val[!act$val %in% exp$val])
4742
exp_miss <- unique(exp$val[!exp$val %in% act$val])
4843

0 commit comments

Comments
 (0)