Minor: normalize '@Test' annotation casing in all tests.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
package test.collections
|
||||
|
||||
import kotlin.test.*
|
||||
import org.junit.Test as test
|
||||
import org.junit.Test
|
||||
|
||||
class IteratorsTest {
|
||||
@test fun iterationOverIterator() {
|
||||
@Test fun iterationOverIterator() {
|
||||
val c = listOf(0, 1, 2, 3, 4, 5)
|
||||
var s = ""
|
||||
for (i in c.iterator()) {
|
||||
|
||||
Reference in New Issue
Block a user