Skip to content

Commit 6fbc56e

Browse files
committed
Drop slf4j-test from webauthn-server-attestation test dependencies
This prevents the unit test XML reports from containing large stdout logs which are not used for anything but crash the default settings of EnricoMi/publish-unit-test-result-action@v2 . This was originally done in commit cdf9513 and then undone for no apparent reason in efa4b00. The tests added in efa4b00 do not use any of the features of `slf4j-test`; it appears the dependency was re-added solely for capturing log output.
1 parent b036b86 commit 6fbc56e

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

webauthn-server-attestation/build.gradle.kts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,7 @@ dependencies {
4545
testImplementation("org.scalatest:scalatest_2.13")
4646
testImplementation("org.scalatestplus:junit-4-13_2.13")
4747
testImplementation("org.scalatestplus:scalacheck-1-16_2.13")
48-
49-
testImplementation("org.slf4j:slf4j-api") {
50-
version {
51-
strictly("[1.7.25,1.8-a)") // Pre-1.8 version required by slf4j-test
52-
}
53-
}
54-
testRuntimeOnly("uk.org.lidalia:slf4j-test")
48+
testImplementation("org.slf4j:slf4j-api")
5549
}
5650

5751
val integrationTest = task<Test>("integrationTest") {

0 commit comments

Comments
 (0)