Skip to content

Commit 2157295

Browse files
committed
fix
1 parent b50306d commit 2157295

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/coverlet.core.coverage.tests/Coverage/CoverageTests.Records.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ public void SkipAutoPropsInRecords(bool skipAutoProps)
4040
{
4141
TestInstrumentationHelper.GetCoverageResult(path)
4242
.Document("Instrumentation.Records.cs")
43-
.AssertNonInstrumentedLines(BuildConfiguration.Debug, (12))
44-
.AssertNonInstrumentedLines(BuildConfiguration.Release, (12))
45-
.AssertLinesCovered(BuildConfiguration.Debug, (7, 1), (8, 1), (9, 1), (10, 1), (11, 1), (13, 1))
46-
.AssertLinesCovered(BuildConfiguration.Release, (8, 1), (10, 1), (11, 1), (13, 1));
43+
.AssertNonInstrumentedLines(BuildConfiguration.Debug, 12,13)
44+
.AssertNonInstrumentedLines(BuildConfiguration.Release, 12, 13)
45+
.AssertLinesCovered(BuildConfiguration.Debug, (7, 1), (8, 1), (9, 1), (10, 1), (11, 1))
46+
.AssertLinesCovered(BuildConfiguration.Release, (8, 1), (10, 1), (11, 1));
4747
}
4848
else
4949
{

0 commit comments

Comments
 (0)