Skip to content

Commit 5047017

Browse files
ws style
1 parent 4888a14 commit 5047017

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
@@ -11788,14 +11788,14 @@ test(1775.1, capture.output(print(DT1, print.keys = TRUE)),
1178811788
DT2 <- data.table(a = 1:3, b = 4:6)
1178911789
setindexv(DT2, c("b","a"))
1179011790
test(1775.2, print(DT2, print.keys = TRUE),
11791-
output = c("Index: <b__a>", " a b", "1: 1 4", "2: 2 5", "3: 3 6"))
11791+
output=c("Index: <b__a>", " a b", "1: 1 4", "2: 2 5", "3: 3 6"))
1179211792
setindexv(DT2, "b")
1179311793
test(1775.3, print(DT2, print.keys = TRUE),
11794-
output = c("Indices: <b__a>, <b>", " a b", "1: 1 4", "2: 2 5", "3: 3 6"))
11794+
output=c("Indices: <b__a>, <b>", " a b", "1: 1 4", "2: 2 5", "3: 3 6"))
1179511795
setkey(DT2, a)
1179611796
setindexv(DT2, c("b","a"))
1179711797
test(1775.4, print(DT2, print.keys = TRUE),
11798-
output = c("Key: <a>", "Indices: <b__a>, <b>", " a b", "1: 1 4", "2: 2 5", "3: 3 6")) ## index 'b' is still good, so we keep it
11798+
output=c("Key: <a>", "Indices: <b__a>, <b>", " a b", "1: 1 4", "2: 2 5", "3: 3 6")) ## index 'b' is still good, so we keep it
1179911799

1180011800
# dev regression #2285
1180111801
cat("A B C\n1 2 3\n4 5 6", file=f<-tempfile())

0 commit comments

Comments
 (0)