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
+3 -3
View File
@@ -16,12 +16,12 @@
package test.collections.js
import org.junit.Test as test
import org.junit.Test
import kotlin.test.*
class JsArrayTest {
@test fun arraySizeAndToList() {
@Test fun arraySizeAndToList() {
val a1 = arrayOf<String>()
val a2 = arrayOf("foo")
val a3 = arrayOf("foo", "bar")
@@ -36,7 +36,7 @@ class JsArrayTest {
}
@test fun arrayListFromCollection() {
@Test fun arrayListFromCollection() {
var c: Collection<String> = arrayOf("A", "B", "C").toList()
var a = ArrayList(c)