Small update
This commit is contained in:
parent
9392ef3352
commit
0048bcd046
1 changed files with 1 additions and 2 deletions
|
@ -61,9 +61,8 @@ public class SdkContentTests : SmokeTests
|
||||||
|
|
||||||
private static IEnumerable<string> GetExclusionFilters(string exceptionFilePath, string sdkType)
|
private static IEnumerable<string> GetExclusionFilters(string exceptionFilePath, string sdkType)
|
||||||
{
|
{
|
||||||
string[] lines = File.ReadAllLines(exceptionFilePath);
|
|
||||||
int prefixSkip = sdkType.Length + 1;
|
int prefixSkip = sdkType.Length + 1;
|
||||||
return lines
|
return File.ReadAllLines(exceptionFilePath)
|
||||||
.Where(line => line.StartsWith(sdkType + ",")) // process only specific sdk exclusions
|
.Where(line => line.StartsWith(sdkType + ",")) // process only specific sdk exclusions
|
||||||
.Select(line =>
|
.Select(line =>
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue