Skip to content

Commit

Permalink
update extension for cobetura and opencover extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
tonerdo committed Jun 10, 2018
1 parent de5bf20 commit bd5fef4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/coverlet.core/Reporters/CoberturaReporter.cs
Expand Up @@ -12,7 +12,7 @@ public class CoberturaReporter : IReporter
{
public string Format => "cobertura";

public string Extension => "xml";
public string Extension => "cobertura.xml";

public string Report(CoverageResult result)
{
Expand Down
2 changes: 1 addition & 1 deletion src/coverlet.core/Reporters/OpenCoverReporter.cs
Expand Up @@ -11,7 +11,7 @@ public class OpenCoverReporter : IReporter
{
public string Format => "opencover";

public string Extension => "xml";
public string Extension => "opencover.xml";

public string Report(CoverageResult result)
{
Expand Down

0 comments on commit bd5fef4

Please sign in to comment.