Skip to content

Commit 353f5ca

Browse files
make test more "hermetic"
1 parent aa7531c commit 353f5ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

inst/tests/tests.Rraw

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20800,7 +20800,8 @@ baz(x)
2080020800
test(2295.7, is.data.table(x))
2080120801

2080220802
# #6588: .checkTypos used to give arbitrary strings to stopf as the first argument
20803-
test(2296, d2[x %no such operator% 1], error = '%no such operator%')
20803+
DT = data.table(a = 1)
20804+
test(2296, DT[x %no such operator% 1], error = '%no such operator%')
2080420805

2080520806
# fix coercing integer/double for joins on multiple columns, #6602
2080620807
x = data.table(a=1L)

0 commit comments

Comments
 (0)