Skip to content

Commit 146cf6a

Browse files
attempt to fix tests
1 parent bc95d4e commit 146cf6a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

inst/tests/mergelist.Rraw

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ local({
2828

2929
test(11.05, cbindlist(list(data.table(a=1L), data.table(), data.table(d=2L), data.table(f=3L))), data.table(a=1L, d=2L, f=3L))
3030
## codecov
31-
test(12.01, cbindlist(data.frame(a=1L), data.frame(b=1L)), error="must be a list")
32-
test(12.02, cbindlist(TRUE, FALSE), error="must be a list")
33-
test(12.03, cbindlist(list(), NA), error="must be TRUE or FALSE")
31+
test(12.01, cbindlist(data.frame(a=1L)), error="must be a list")
32+
test(12.02, cbindlist(TRUE), error="must be a list")
33+
test(12.03, cbindlist(list(list(), NA)), error="must be TRUE or FALSE")
3434
test(12.04, cbindlist(list(data.table(a=1L), 1L)), error="is not a data.table")
3535
test(12.05, options = c(datatable.verbose=TRUE), cbindlist(list(data.table(a=1:2), data.table(b=1:2))), data.table(a=1:2, b=1:2), output="cbindlist.*took")
3636
test(12.06, cbindlist(list(data.table(), data.table(a=1:2), data.table(b=1:2))), data.table(a=1:2, b=1:2))

0 commit comments

Comments
 (0)