diff --git a/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ExclExcl.jet b/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ExclExcl.jet index 94d44069aec..9464d13025c 100644 --- a/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ExclExcl.jet +++ b/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/ExclExcl.jet @@ -6,8 +6,8 @@ fun foo() { bar(x) if (x != null) bar(x!!) if (x == null) bar(x!!) - if (x != null) else bar(x!!) + if (x != null) else bar(x!!) if (x == null) else bar(x!!) - if (x != null) bar(x!!) else bar(x!!) - if (x == null) bar(x!!) else bar(x!!) + if (x != null) bar(x!!) else bar(x!!) + if (x == null) bar(x!!) else bar(x!!) } diff --git a/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/AssertNotNull.jet b/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/AssertNotNull.jet index bf91b286d2b..6da7a053503 100644 --- a/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/AssertNotNull.jet +++ b/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/AssertNotNull.jet @@ -2,11 +2,11 @@ fun main(args : Array) { val a : Int? = null val b : Int? = null a!! : Int - a!! + 2 - a!!.plus(2) - a!!.plus(b!!) - 2.plus(b!!) - 2 + b!! + a!! + 2 + a!!.plus(2) + a!!.plus(b!!) + 2.plus(b!!) + 2 + b!! val c = 1 c!! @@ -30,6 +30,6 @@ fun main(args : Array) { } } - val f : String = a!! - a!! : String + val f : String = a!! + a!! : String } \ No newline at end of file