Skip to content

Commit dcde22c

Browse files
committed
Fix typos in comments
1 parent a55f620 commit dcde22c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utbot-framework/src/test/kotlin/org/utbot/sarif/SarifReportTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class SarifReportTest {
226226

227227
val testCases = listOf(
228228
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
230230
)
231231

232232
val report = SarifReport(
@@ -236,7 +236,7 @@ class SarifReportTest {
236236
).createReport().toSarif()
237237

238238
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
240240
}
241241

242242
// internal

0 commit comments

Comments
 (0)