Cleanup deprecated symbol usages in testData

This commit is contained in:
Ilya Gorbunov
2016-01-16 20:10:40 +03:00
parent eefbd72a64
commit 25c4453dc5
403 changed files with 933 additions and 921 deletions
@@ -17,7 +17,7 @@ fun box(): String {
val range1 = MaxI..MinI step 1
for (i in range1) {
list1.add(i)
if (list1.size() > 23) break
if (list1.size > 23) break
}
if (list1 != listOf<Int>()) {
return "Wrong elements for MaxI..MinI step 1: $list1"
@@ -27,7 +27,7 @@ fun box(): String {
val range2 = MaxB..MinB step 1
for (i in range2) {
list2.add(i)
if (list2.size() > 23) break
if (list2.size > 23) break
}
if (list2 != listOf<Int>()) {
return "Wrong elements for MaxB..MinB step 1: $list2"
@@ -37,7 +37,7 @@ fun box(): String {
val range3 = MaxS..MinS step 1
for (i in range3) {
list3.add(i)
if (list3.size() > 23) break
if (list3.size > 23) break
}
if (list3 != listOf<Int>()) {
return "Wrong elements for MaxS..MinS step 1: $list3"
@@ -47,7 +47,7 @@ fun box(): String {
val range4 = MaxL..MinL step 1
for (i in range4) {
list4.add(i)
if (list4.size() > 23) break
if (list4.size > 23) break
}
if (list4 != listOf<Long>()) {
return "Wrong elements for MaxL..MinL step 1: $list4"
@@ -57,7 +57,7 @@ fun box(): String {
val range5 = MaxC..MinC step 1
for (i in range5) {
list5.add(i)
if (list5.size() > 23) break
if (list5.size > 23) break
}
if (list5 != listOf<Char>()) {
return "Wrong elements for MaxC..MinC step 1: $list5"