Skip to content

Commit 4fbd315

Browse files
committed
Update ktlint
1 parent 4c6f815 commit 4fbd315

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*.{kt,kts}]
2+
ij_kotlin_allow_trailing_comma = false
3+
ij_kotlin_allow_trailing_comma_on_call_site = false

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jmh = "1.36"
99
junit4 = "4.13.2"
1010
junit4Osgi = "4.13.2_1"
1111
junit4Min = "4.12"
12-
ktlint = "0.43.0"
12+
ktlint = "0.48.2"
1313
log4j = "2.19.0"
1414
opentest4j = "1.2.0"
1515
openTestReporting = "0.1.0-M1"

junit-jupiter-engine/src/test/kotlin/org/junit/jupiter/api/KotlinAssertionsTests.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,8 @@ class KotlinAssertionsTests {
217217
vararg exceptionTypes: KClass<out Throwable>
218218
) =
219219
AssertAllAssertionsTests.assertExpectedExceptionTypes(
220-
multipleFailuresError, *exceptionTypes.map { it.java }.toTypedArray()
220+
multipleFailuresError,
221+
*exceptionTypes.map { it.java }.toTypedArray()
221222
)
222223
}
223224
}

0 commit comments

Comments
 (0)