Skip to content

Commit e87b09f

Browse files
authored
Fixed the region names #1301 (#1393)
1 parent b07601d commit e87b09f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/tree/CgTestClassConstructor.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,12 @@ open class CgTestClassConstructor(val context: CgContext) :
227227
}
228228

229229
regions += CgSimpleRegion(
230-
"SYMBOLIC EXECUTION: additional tests for symbolic executions for method ${methodUnderTest.humanReadableName}",
230+
"SYMBOLIC EXECUTION: additional tests for symbolic executions for method ${methodUnderTest.humanReadableName} that cannot be presented as parameterized",
231231
collectAdditionalSymbolicTestsForParametrizedMode(testSet),
232232
)
233233

234234
regions += CgSimpleRegion(
235-
"FUZZER: Tests for method ${methodUnderTest.humanReadableName}",
235+
"FUZZER: Tests for method ${methodUnderTest.humanReadableName} that cannot be presented as parameterized",
236236
collectFuzzerTestsForParameterizedMode(testSet),
237237
)
238238
}

0 commit comments

Comments
 (0)