Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane32 committed Nov 17, 2021
1 parent 2712874 commit 15e1382
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 15e1382

Please sign in to comment.