File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
utbot-framework/src/test/kotlin/org/utbot/sarif Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ class SarifReportTest {
226
226
227
227
val testCases = listOf (
228
228
UtTestCase (mockUtMethod, listOf (mockUtExecution1)),
229
- UtTestCase (mockUtMethod, listOf (mockUtExecution2)) // duplicate with longer stack trace
229
+ UtTestCase (mockUtMethod, listOf (mockUtExecution2)) // duplicate with a longer stack trace
230
230
)
231
231
232
232
val report = SarifReport (
@@ -236,7 +236,7 @@ class SarifReportTest {
236
236
).createReport().toSarif()
237
237
238
238
assert (report.runs.first().results.size == 1 ) // no duplicates
239
- assert (report.runs.first().results.first().totalCodeFlowLocations() == 1 ) // with shorter stack trace
239
+ assert (report.runs.first().results.first().totalCodeFlowLocations() == 1 ) // with a shorter stack trace
240
240
}
241
241
242
242
// internal
You can’t perform that action at this time.
0 commit comments