From 89e0870c82e9717ad16e62903deb2e28e29d5117 Mon Sep 17 00:00:00 2001 From: Daniel Palme Date: Thu, 18 Apr 2024 07:41:38 +0200 Subject: [PATCH] Tests --- src/ReportGenerator.Core.Test/Common/GlobbingFileSearchTest.cs | 2 +- src/ReportGenerator.Core.Test/Common/WildCardFileSearchTest.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ReportGenerator.Core.Test/Common/GlobbingFileSearchTest.cs b/src/ReportGenerator.Core.Test/Common/GlobbingFileSearchTest.cs index 4a94a725..bc85406c 100644 --- a/src/ReportGenerator.Core.Test/Common/GlobbingFileSearchTest.cs +++ b/src/ReportGenerator.Core.Test/Common/GlobbingFileSearchTest.cs @@ -28,7 +28,7 @@ public void GetFiles_EmptyDirectory_NoFilesFound() public void GetFiles_SingleDirectory_XmlFilesFound() { var files = GlobbingFileSearch.GetFiles(Path.Combine(FileManager.GetCSharpReportDirectory(), "*.xml")).ToArray(); - Assert.Equal(23, files.Length); + Assert.Equal(24, files.Length); } [Fact] diff --git a/src/ReportGenerator.Core.Test/Common/WildCardFileSearchTest.cs b/src/ReportGenerator.Core.Test/Common/WildCardFileSearchTest.cs index c4ee42ce..d27f9619 100644 --- a/src/ReportGenerator.Core.Test/Common/WildCardFileSearchTest.cs +++ b/src/ReportGenerator.Core.Test/Common/WildCardFileSearchTest.cs @@ -58,7 +58,7 @@ public void GetFiles_EmptyDirectory_NoFilesFound() public void GetFiles_SingleDirectory_XmlFilesFound() { var files = WildCardFileSearch.GetFiles(Path.Combine(FileManager.GetCSharpReportDirectory(), "*.xml")).ToArray(); - Assert.Equal(23, files.Length); + Assert.Equal(24, files.Length); } [Fact]