File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
utbot-summary/src/main/kotlin/org/utbot/summary/comment
utbot-summary-tests/src/test/kotlin/examples Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import org.utbot.framework.UtSettings.checkSolverTimeoutMillis
11
11
import org.utbot.framework.codegen.TestExecution
12
12
import org.utbot.framework.plugin.api.*
13
13
import org.utbot.framework.plugin.api.util.UtContext
14
- import org.utbot.summary.UtSummarySettings
15
14
import org.utbot.summary.comment.nextSynonyms
16
15
import org.utbot.summary.summarize
17
16
import kotlin.reflect.KClass
Original file line number Diff line number Diff line change @@ -154,8 +154,8 @@ open class SimpleCommentBuilder(
154
154
if (exceptionNode == null ) return " "
155
155
156
156
reason + = when {
157
- exceptionNode is IfStmt -> " {@code ${ exceptionNode.condition} } "
158
- isLoopStatement(exceptionNode) -> " {@code ${ getTextIterationDescription(exceptionNode)} "
157
+ exceptionNode is IfStmt -> exceptionNode.condition.toString()
158
+ isLoopStatement(exceptionNode) -> getTextIterationDescription(exceptionNode)
159
159
exceptionNode is SwitchStmt -> textSwitchCase(step, jimpleToASTMap)
160
160
else -> exceptionNode.toString()
161
161
}
You can’t perform that action at this time.
0 commit comments