Skip to content

Commit d11c867

Browse files
committed
Fix Select_Dynamic_SystemType1 unit test
1 parent 9e49208 commit d11c867

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/System.Linq.Dynamic.Core.Tests/QueryableTests.Select.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,11 +324,15 @@ public void Select_Dynamic_IntoTypeWithNullableParameterInConstructor()
324324
Check.That(resultDynamic.Last()).Equals(result.Last());
325325
}
326326

327-
[Fact(Skip = "867")]
327+
[Fact]
328328
public void Select_Dynamic_SystemType1()
329329
{
330330
// Arrange
331-
var config = new ParsingConfig { AllowNewToEvaluateAnyType = true };
331+
var config = new ParsingConfig
332+
{
333+
AllowNewToEvaluateAnyType = true
334+
};
335+
config.UseDefaultDynamicLinqCustomTypeProvider([typeof(DirectoryInfo)]);
332336
var queryable = new[] { "test" }.AsQueryable();
333337

334338
// Act

0 commit comments

Comments
 (0)