File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/coverlet.core/Reporters Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public string Report(CoverageResult result)
39
39
package . Add ( new XAttribute ( "name" , Path . GetFileNameWithoutExtension ( module . Key ) ) ) ;
40
40
package . Add ( new XAttribute ( "line-rate" , ( summary . CalculateLineCoverage ( module . Value ) . Percent / 100 ) . ToString ( CultureInfo . InvariantCulture ) ) ) ;
41
41
package . Add ( new XAttribute ( "branch-rate" , ( summary . CalculateBranchCoverage ( module . Value ) . Percent / 100 ) . ToString ( CultureInfo . InvariantCulture ) ) ) ;
42
- package . Add ( new XAttribute ( "complexity" , summary . CalculateCyclomaticComplexity ( module . Value ) . ToString ( CultureInfo . InvariantCulture ) ) ) ;
42
+ package . Add ( new XAttribute ( "complexity" , summary . CalculateCyclomaticComplexity ( module . Value ) ) ) ;
43
43
44
44
XElement classes = new XElement ( "classes" ) ;
45
45
foreach ( var document in module . Value )
You can’t perform that action at this time.
0 commit comments