Skip to content

Commit bac3a33

Browse files
committed
protobuf: Fix name in ConformanceTest.kt
Signed-off-by: Johannes Zottele <[email protected]>
1 parent efea40a commit bac3a33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/protobuf-conformance/src/test/kotlin/kotlinx/rpc/protoc/gen/test/ConformanceTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ class ConformanceTest {
8484

8585
return (fails.entries.map { (test, message) ->
8686
DynamicTest.dynamicTest(test.testDisplayName()) {
87-
fail("FAILED: '${test.testDisplayName()}' with: $message")
87+
fail("FAILED: '${test}' with: $message")
8888
}
8989
} + passed.map { test ->
9090
DynamicTest.dynamicTest(test.testDisplayName()) {
91-
println("PASSED: '${test.testDisplayName()}'")
91+
println("PASSED: '${test}'")
9292
}
9393
}).stream()
9494
}

0 commit comments

Comments
 (0)