Minor: normalize '@Test' annotation casing in all tests.

This commit is contained in:
Ilya Gorbunov
2016-11-16 21:26:39 +03:00
parent 50cd620f92
commit 6a70761783
48 changed files with 749 additions and 751 deletions
@@ -1,12 +1,12 @@
@file:kotlin.jvm.JvmVersion
package test.collections
import org.junit.Test as test
import org.junit.Test
import kotlin.test.assertEquals
class SequenceJVMTest {
@test fun filterIsInstance() {
@Test fun filterIsInstance() {
val src: Sequence<Any> = listOf(1, 2, 3.toDouble(), "abc", "cde").asSequence()
val intValues: Sequence<Int> = src.filterIsInstance<Int>()