Cleanup deprecated symbol usages in testData
This commit is contained in:
Vendored
+5
-5
@@ -17,7 +17,7 @@ fun box(): String {
|
||||
val range1 = (MaxI - 2)..MaxI step 2
|
||||
for (i in range1) {
|
||||
list1.add(i)
|
||||
if (list1.size() > 23) break
|
||||
if (list1.size > 23) break
|
||||
}
|
||||
if (list1 != listOf<Int>(MaxI - 2, MaxI)) {
|
||||
return "Wrong elements for (MaxI - 2)..MaxI step 2: $list1"
|
||||
@@ -27,7 +27,7 @@ fun box(): String {
|
||||
val range2 = (MaxB - 2).toByte()..MaxB step 2
|
||||
for (i in range2) {
|
||||
list2.add(i)
|
||||
if (list2.size() > 23) break
|
||||
if (list2.size > 23) break
|
||||
}
|
||||
if (list2 != listOf<Int>((MaxB - 2).toInt(), MaxB.toInt())) {
|
||||
return "Wrong elements for (MaxB - 2).toByte()..MaxB step 2: $list2"
|
||||
@@ -37,7 +37,7 @@ fun box(): String {
|
||||
val range3 = (MaxS - 2).toShort()..MaxS step 2
|
||||
for (i in range3) {
|
||||
list3.add(i)
|
||||
if (list3.size() > 23) break
|
||||
if (list3.size > 23) break
|
||||
}
|
||||
if (list3 != listOf<Int>((MaxS - 2).toInt(), MaxS.toInt())) {
|
||||
return "Wrong elements for (MaxS - 2).toShort()..MaxS step 2: $list3"
|
||||
@@ -47,7 +47,7 @@ fun box(): String {
|
||||
val range4 = (MaxL - 2).toLong()..MaxL step 2
|
||||
for (i in range4) {
|
||||
list4.add(i)
|
||||
if (list4.size() > 23) break
|
||||
if (list4.size > 23) break
|
||||
}
|
||||
if (list4 != listOf<Long>((MaxL - 2).toLong(), MaxL)) {
|
||||
return "Wrong elements for (MaxL - 2).toLong()..MaxL step 2: $list4"
|
||||
@@ -57,7 +57,7 @@ fun box(): String {
|
||||
val range5 = (MaxC - 2)..MaxC step 2
|
||||
for (i in range5) {
|
||||
list5.add(i)
|
||||
if (list5.size() > 23) break
|
||||
if (list5.size > 23) break
|
||||
}
|
||||
if (list5 != listOf<Char>((MaxC - 2), MaxC)) {
|
||||
return "Wrong elements for (MaxC - 2)..MaxC step 2: $list5"
|
||||
|
||||
Reference in New Issue
Block a user