Update tests according to new formatter behavior

This commit is contained in:
Dmitry Jemerov
2017-06-14 11:40:41 +02:00
parent 8c6f93b899
commit b1f84676d1
9 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
fun foo(x: Boolean) {
try {
x
} catch(e: <caret>Exception) {
} catch (e: Exception) {
}
}
+1 -1
View File
@@ -2,6 +2,6 @@ fun foo() {
try {
for (i in 1..100) {
}
} catch(e: Exception) {
} catch (e: Exception) {
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
fun foo() {
try {
val x = 1
} catch(e: Exception) {
} catch (e: Exception) {
}
}