Skip to content

Commit

Permalink
Pass in filters as a list since MSpec test runner cannot handle an IE…
Browse files Browse the repository at this point in the history
…numerable.Select()
  • Loading branch information
cnwilkin committed Apr 26, 2013
1 parent c0bc05e commit d8ad15e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Giles.Core/AppDomains/GilesAppDomainRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public IEnumerable<SessionResults> Run(string testAssemblyPath, List<Filter> fil
var result = new List<SessionResults>();
testFrameworkRunner.ForEach(x =>
result.Add(
x.RunAssembly(testAssembly, filters.Select(y => y.Name))));
x.RunAssembly(testAssembly, filters.Select(y => y.Name).ToList())));
return result;
}
}
Expand Down

0 comments on commit d8ad15e

Please sign in to comment.