Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update tests
  • Loading branch information
Shane32 committed Nov 17, 2021
commit 15e1382f4c5e85e93ed3bd9e689c22c7f30f22c2
4 changes: 2 additions & 2 deletions src/Tests/Execution/DISchemaTypes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void GetGraphTypeFromClrType_NoOutput(Type clrType, bool isInputType, Typ

private class MySchemaTypes2 : DISchemaTypes
{
public MySchemaTypes2() : base(new Schema(), Mock.Of<IServiceProvider>()) { }
public MySchemaTypes2() : base(new Schema(), Mock.Of<IServiceProvider>(), true, true) { }

public new Type GetGraphTypeFromClrType(Type clrType, bool isInputType, List<(Type ClrType, Type GraphType)> typeMappings)
=> base.GetGraphTypeFromClrType(clrType, isInputType, typeMappings);
Expand All @@ -67,7 +67,7 @@ public void GetGraphTypeFromClrType_NoInput(Type clrType, bool isInputType, Type

private class MySchemaTypes3 : DISchemaTypes
{
public MySchemaTypes3() : base(new Schema(), Mock.Of<IServiceProvider>()) { }
public MySchemaTypes3() : base(new Schema(), Mock.Of<IServiceProvider>(), true, true) { }

public new Type GetGraphTypeFromClrType(Type clrType, bool isInputType, List<(Type ClrType, Type GraphType)> typeMappings)
=> base.GetGraphTypeFromClrType(clrType, isInputType, typeMappings);
Expand Down