Mute RedundantRequireNotNullCall tests in 193 (KT-34672)

This commit is contained in:
Nikolay Krasko
2019-10-28 19:43:25 +03:00
committed by Nikolay Krasko
parent bed2e21a1a
commit 201859be92
4 changed files with 19 additions and 1 deletions
@@ -0,0 +1,5 @@
Actual data differs from file content: usedAsExpression.kt.after expected:<...: Int) {
val a =[ i]
}> but was:<...: Int) {
val a =[]
}>
@@ -0,0 +1,5 @@
Actual data differs from file content: usedAsExpression2.kt.after expected:<... Int) {
println([i])
}> but was:<... Int) {
println([])
}>
@@ -0,0 +1,5 @@
Actual data differs from file content: usedAsExpression3.kt.after expected:<...st(i: Int) {
"${[i]}"
}> but was:<...st(i: Int) {
"${[]}"
}>
+4 -1
View File
@@ -7,4 +7,7 @@ org.jetbrains.kotlin.idea.inspections.CoroutineNonBlockingContextDetectionTest.t
org.jetbrains.kotlin.idea.inspections.CoroutineNonBlockingContextDetectionTest.testDispatchersTypeDetection, KT-34659
org.jetbrains.kotlin.idea.inspections.CoroutineNonBlockingContextDetectionTest.testLambdaReceiverType, KT-34659
org.jetbrains.kotlin.idea.inspections.CoroutineNonBlockingContextDetectionTest.testNestedFunctionsInsideSuspendLambda, KT-34659
org.jetbrains.kotlin.idea.inspections.CoroutineNonBlockingContextDetectionTest.testSimpleCoroutineScope, KT-34659
org.jetbrains.kotlin.idea.inspections.CoroutineNonBlockingContextDetectionTest.testSimpleCoroutineScope, KT-34659
org.jetbrains.kotlin.idea.inspections.LocalInspectionTestGenerated.RedundantRequireNotNullCall.testUsedAsExpression, KT-34672, FAIL
org.jetbrains.kotlin.idea.inspections.LocalInspectionTestGenerated.RedundantRequireNotNullCall.testUsedAsExpression2, KT-34672, FAIL
org.jetbrains.kotlin.idea.inspections.LocalInspectionTestGenerated.RedundantRequireNotNullCall.testUsedAsExpression3, KT-34672, FAIL