Skip to content

Commit b072be5

Browse files
fwrite call to use data.table subsetting
1 parent 08f6fee commit b072be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/atime/tests.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ test.list <- atime::atime_test_list(
317317
if (has_select) {
318318
data.table::fwrite(DT, temp_file, select = select_idx)
319319
} else {
320-
data.table::fwrite(DT[, select_idx, with = FALSE], temp_file)
320+
data.table::fwrite(data.table:::`[.data.table`(DT, , select_idx, with = FALSE), temp_file)
321321
}
322322
},
323323
Slow = "66cb6d2393cef30083b444346a7600a079207806", # Parent of the first commit in the PR (https://github.com/Rdatatable/data.table/commit/66cb6d2393cef30083b444346a7600a079207806)

0 commit comments

Comments
 (0)