Fixed tests after adding error checking for intention tests.
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
fun foo(i: (Int) -> Unit) {}
|
||||
fun test() {
|
||||
foo { <caret>x ->
|
||||
array(1, 2, 3).filter { x -> x % 2 == 0 }
|
||||
foo { x -> x % 2 == 0 }
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
fun foo(i: (Int) -> Unit) {}
|
||||
fun test() {
|
||||
foo {
|
||||
<caret>array(1, 2, 3).filter { x -> x % 2 == 0 }
|
||||
<caret>foo { x -> x % 2 == 0 }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user