Skip to content

Commit ba05965

Browse files
aitapMichaelChirico
andcommitted
Rename test variables
Co-Authored-By: Michael Chirico <michaelchirico4@gmail.com>
1 parent e54ac2f commit ba05965

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

inst/tests/tests.Rraw

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21500,9 +21500,9 @@ rm(x, y, y2)
2150021500

2150121501
# internal use of set() causes non-resizable data.tables to be re-assigned in the wrong frame, #7604
2150221502
# bmerge -> coerce_col
21503-
y = structure(list(x = as.double(2:3), y = list("foo", "bar")), class = c("data.table", "data.frame"))
21504-
x = structure(list(x = 1:3), class = c("data.table", "data.frame"))
21505-
test(2364.1, y[x, on = "x"], data.table(x = 1:3, y = list(NULL, "foo", "bar")))
21503+
x = structure(list(a = as.double(2:3), b = list("foo", "bar")), class = c("data.table", "data.frame"))
21504+
y = structure(list(a = 1:3), class = c("data.table", "data.frame"))
21505+
test(2364.1, x[y, on = "a"], data.table(a = 1:3, b = list(NULL, "foo", "bar")))
2150621506
x = structure(list(a = factor("a", levels = letters)), class = c("data.table", "data.frame"))
2150721507
y = data.table(a = factor("a", levels = letters))
2150821508
setdroplevels(x)

0 commit comments

Comments
 (0)