Skip to content

Commit

Permalink
Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Apr 18, 2024
1 parent bcd054d commit 89e0870
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -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]
Expand Down
Expand Up @@ -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]
Expand Down

0 comments on commit 89e0870

Please sign in to comment.