Skip to content

Commit

Permalink
Fix package name in Cobertura file
Browse files Browse the repository at this point in the history
  • Loading branch information
cagrin committed Apr 17, 2024
1 parent 1703608 commit c8e2fc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SqlTest.Tests/DatabaseTests/OkDatabaseTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void InvokeSqlTestRunAllOkWithXmlCobertura(string image)
<!--DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-03.dtd"-->
<coverage lines-valid="5" lines-covered="3" line-rate="0.6" version="1.9" timestamp="__________.%">
<packages>
<package name="sql">
<package name="Database.Tests">
<classes>
<class name="[[]dbo].[[]Assertions]" filename="[[]dbo].[[]Assertions]" lines-valid="3" lines-covered="3" line-rate="1" >
<methods/>
Expand Down
2 changes: 1 addition & 1 deletion SqlTest/RunAllCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ private void CoberturaXml()
{
using var file = new StreamWriter(this.options.CcCobertura);

string xml = this.code!.Cobertura();
string xml = this.code!.Cobertura(this.database);
file.Write(xml);
}
}

0 comments on commit c8e2fc4

Please sign in to comment.