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 0a4b29f commit 3022098Copy full SHA for 3022098
scalatest/src/main/scala/org/scalatest/Suite.scala
@@ -1616,9 +1616,9 @@ used for test events like succeeded/failed, etc.
1616
IndentedText(formattedText, decodedTestText, level)
1617
}
1618
1619
- def getEscapedIndentedTextForTest(testText: String, level: Int, includeIcon: Boolean) = {
+ def getEscapedIndentedTextForTest(testText: String, level: Int, includeIcon: Boolean): IndentedText = {
1620
val decodedTestText = NameTransformer.decode(testText)
1621
- val escapedTestText =
+ val escapedTestText =
1622
if (decodedTestText.startsWith("test: "))
1623
decodedTestText.drop(6)
1624
else
0 commit comments