Skip to content

Commit

Permalink
fix test for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Bertk committed Feb 9, 2024
1 parent d5ea832 commit f326cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/coverlet.core.tests/Coverage/CoverageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public void TestCoverageMergeWithParameter()

Assert.Contains("DeepThought.cs", result);

_mockLogger.Verify(l => l.LogInformation(It.Is<string>(v => v.StartsWith("MergeWith: '") && v.EndsWith("TestAssets\\MergeWith.coverage.json'.")), It.IsAny<bool>()), Times.Once);
_mockLogger.Verify(l => l.LogInformation(It.Is<string>(v => v.StartsWith("MergeWith: '") && v.EndsWith("MergeWith.coverage.json'.")), It.IsAny<bool>()), Times.Once);

directory.Delete(true);
}
Expand Down

0 comments on commit f326cf2

Please sign in to comment.