Skip to content

Commit 37ec19f

Browse files
authored
Get rid of warning (#1760)
The trailing space was triggering tests\BenchmarkDotNet.IntegrationTests\ThreadingDiagnoserTests.cs(159,140): warning SA1028: Code should not contain trailing whitespace
1 parent 1a94d4d commit 37ec19f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/BenchmarkDotNet.IntegrationTests/ThreadingDiagnoserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ private void AssertStats(Summary summary, Dictionary<string, (string metricName,
156156
var metric = selectedReport.Metrics.Single(m => m.Key == assertion.Value.metricName);
157157

158158
// precision is set to 2 because CoreCLR might schedule some work item on it's own and hence affect the results..
159-
// precision = 3 is not enough (e.g., sometimes the actual value may be equal 1.0009765625 while the expected value is 1.0)
159+
// precision = 3 is not enough (e.g., sometimes the actual value may be equal 1.0009765625 while the expected value is 1.0)
160160
Assert.Equal(assertion.Value.expectedValue, metric.Value.Value, precision: 2);
161161
}
162162
}

0 commit comments

Comments
 (0)