Skip to content

Commit

Permalink
Update CoverageResult.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Sep 29, 2024
1 parent ff8aedf commit 4cb7bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Draco.Coverage/CoverageResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public string ToLcov()
/// <param name="stream">The stream to write to.</param>
public void WriteLcov(Stream stream)
{
using var writer = new StreamWriter(stream);
var writer = new StreamWriter(stream);

// We need to emit the data by file
var dataByFile = this.SequencePoints
Expand Down

0 comments on commit 4cb7bb4

Please sign in to comment.