Skip to content

Commit 89e0870

Browse files
committed
Tests
1 parent bcd054d commit 89e0870

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ReportGenerator.Core.Test/Common/GlobbingFileSearchTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void GetFiles_EmptyDirectory_NoFilesFound()
2828
public void GetFiles_SingleDirectory_XmlFilesFound()
2929
{
3030
var files = GlobbingFileSearch.GetFiles(Path.Combine(FileManager.GetCSharpReportDirectory(), "*.xml")).ToArray();
31-
Assert.Equal(23, files.Length);
31+
Assert.Equal(24, files.Length);
3232
}
3333

3434
[Fact]

src/ReportGenerator.Core.Test/Common/WildCardFileSearchTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void GetFiles_EmptyDirectory_NoFilesFound()
5858
public void GetFiles_SingleDirectory_XmlFilesFound()
5959
{
6060
var files = WildCardFileSearch.GetFiles(Path.Combine(FileManager.GetCSharpReportDirectory(), "*.xml")).ToArray();
61-
Assert.Equal(23, files.Length);
61+
Assert.Equal(24, files.Length);
6262
}
6363

6464
[Fact]

0 commit comments

Comments
 (0)