Skip to content

Commit ddb9660

Browse files
authored
Merge pull request #281 from tonyhallett/fix-ms-coverage-regex
correct regex
2 parents af377ce + 094fb38 commit ddb9660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SharedProject/Core/MsTestPlatform/CodeCoverage/MsCodeCoverageRegex.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public static string RegexEscapePath(string path)
99

1010
public static string RegexModuleName(string moduleName)
1111
{
12-
return $".*\\\\{moduleName}.dll^";
12+
return $".*\\\\{moduleName}.dll$";
1313
}
1414
}
1515

0 commit comments

Comments
 (0)