Fix typos in tests

This commit is contained in:
Vitaliy.Bibaev
2017-11-21 20:45:16 +03:00
committed by Yan Zhulanow
parent cd17f59e21
commit 3b6b6d5770
2 changed files with 4 additions and 4 deletions
@@ -19,9 +19,9 @@ class TypedJavaChainTest : TypedChainTestCase("streams/positive/types") {
fun testPrimitiveOneCall() = doTest(INT)
fun testPrimitiveMapToSame() = doTest(LONG, LONG)
fun testMapToPrimitive() = doTest(NULLABLE_ANY, INT)
fun testMapToPrimitive() = doTest(NULLABLE_ANY, DOUBLE)
fun testMapToObj() = doTest(DOUBLE, NULLABLE_ANY)
fun testMapPrimitiveToPrimitive() = doTest(LONG, DOUBLE)
fun testMapPrimitiveToPrimitive() = doTest(LONG, INT)
fun testFewTransitions() = doTest(NULLABLE_ANY, INT, NULLABLE_ANY, LONG, DOUBLE)
}