@@ -11788,14 +11788,14 @@ test(1775.1, capture.output(print(DT1, print.keys = TRUE)),
1178811788DT2 <- data.table(a = 1:3, b = 4:6)
1178911789setindexv(DT2, c("b","a"))
1179011790test(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"))
1179211792setindexv(DT2, "b")
1179311793test(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"))
1179511795setkey(DT2, a)
1179611796setindexv(DT2, c("b","a"))
1179711797test(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
1180111801cat("A B C\n1 2 3\n4 5 6", file=f<-tempfile())
0 commit comments