Skip to content

Commit

Permalink
misc: fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
dupdob committed Dec 26, 2024
1 parent 60a7a04 commit ba24808
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public class ValidateStrykerResults
SyntaxKind.FieldDeclaration,
SyntaxKind.OperatorDeclaration,
SyntaxKind.IndexerDeclaration,
SyntaxKind.GlobalStatement,
]
);
private const string MutationReportJson = "mutation-report.json";
Expand Down Expand Up @@ -101,7 +102,7 @@ public async Task CSharp_NetCore_WithTwoTestProjects()

var report = await strykerRunOutput.DeserializeJsonReportAsync();

CheckReportMutants(report, total: 636, ignored: 112, survived: 5, killed: 11, timeout: 2, nocoverage: 469);
CheckReportMutants(report, total: 638, ignored: 112, survived: 5, killed: 11, timeout: 2, nocoverage: 471);
CheckReportTestCounts(report, total: 21);
}

Expand Down

0 comments on commit ba24808

Please sign in to comment.