Skip to content

Commit 1ce1997

Browse files
Fix error, also later tests assumed success
1 parent 9ca4b8f commit 1ce1997

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
@@ -13935,7 +13935,8 @@ test(1967.42, x[3, rollends = rep(TRUE, 10L)], error = 'rollends must be length
1393513935
test(1967.43, x[ , ..], error = 'symbol .. is invalid')
1393613936
test(1967.44, x[NULL], data.table(NULL))
1393713937
test(1967.45, x[ , NULL], NULL)
13938-
test(1967.46, x[ , 'b' := 6:10, with=FALSE], error='with=FALSE ignored')
13938+
test(1967.46, x[ , 'b' := 6:10, with=FALSE], error='with=FALSE together with :=')
13939+
x[, b := 6:10]
1393913940
test(1967.47, x[ , -1L, with = FALSE], data.table(b = 6:10))
1394013941
test(1967.48, x[ , b, .SDcols = 'a'], 6:10,
1394113942
warning = "This j doesn't use .SD")

0 commit comments

Comments
 (0)