Skip to content

Commit aa33583

Browse files
committed
Update MatchingFileFinder.cs
1 parent 86debcd commit aa33583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Verify/Naming/MatchingFileFinder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static IEnumerable<string> FindVerified(string fileNamePrefix, string dir
1919
nonIndexedPattern: $"{fileNamePrefix}.verified.",
2020
indexedPattern: $"{fileNamePrefix}#");
2121

22-
static IEnumerable<string> Find(string directory, string searchPattern, string nonIndexedPattern, string indexedPattern)
22+
static List<string> Find(string directory, string searchPattern, string nonIndexedPattern, string indexedPattern)
2323
{
2424
var startIndex = directory.Length + 1;
2525
var list = new List<string>();

0 commit comments

Comments
 (0)