We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efea40a commit bac3a33Copy full SHA for bac3a33
tests/protobuf-conformance/src/test/kotlin/kotlinx/rpc/protoc/gen/test/ConformanceTest.kt
@@ -84,11 +84,11 @@ class ConformanceTest {
84
85
return (fails.entries.map { (test, message) ->
86
DynamicTest.dynamicTest(test.testDisplayName()) {
87
- fail("FAILED: '${test.testDisplayName()}' with: $message")
+ fail("FAILED: '${test}' with: $message")
88
}
89
} + passed.map { test ->
90
91
- println("PASSED: '${test.testDisplayName()}'")
+ println("PASSED: '${test}'")
92
93
}).stream()
94
0 commit comments