Skip to content

Commit

Permalink
fix package test
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Mar 12, 2024
1 parent a94ceca commit cfc001c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LoadModules.Extensions.Tests/PackageListIsCorrectTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private static IEnumerable<string> GetCsprojFiles(DirectoryInfo root)
/// <returns></returns>
private static string[] GetPackagesMarkdown(DirectoryInfo root)
{
var path = root.EnumerateFiles("packages.md", EnumerationOptions).Select(static f => f.FullName).ToArray();
var path = root.EnumerateFiles("packages.md", EnumerationOptions).Select(static f => f.FullName).Where(f => !f.Contains("RDMP\\Documentation\\CodeTutorials\\Packages.md")).ToArray();
Assert.That(path, Is.Not.Empty, "Packages.md not found");
return path;
}
Expand Down

0 comments on commit cfc001c

Please sign in to comment.