Small update

This commit is contained in:
Nikola Milosavljevic 2023-02-27 19:51:40 +00:00
parent 9392ef3352
commit 0048bcd046

View file

@ -61,9 +61,8 @@ public class SdkContentTests : SmokeTests
private static IEnumerable<string> GetExclusionFilters(string exceptionFilePath, string sdkType)
{
string[] lines = File.ReadAllLines(exceptionFilePath);
int prefixSkip = sdkType.Length + 1;
return lines
return File.ReadAllLines(exceptionFilePath)
.Where(line => line.StartsWith(sdkType + ",")) // process only specific sdk exclusions
.Select(line =>
{