Skip to content

Commit e0464f5

Browse files
committed
Correct forgotten part in rename
1 parent 6678d87 commit e0464f5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

benchmarks/Serialization/ResourceSerializationBenchmarks.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@ protected override JsonApiRequest CreateJsonApiRequest(IResourceGraph resourceGr
122122

123123
protected override IEvaluatedIncludeCache CreateEvaluatedIncludeCache(IResourceGraph resourceGraph)
124124
{
125-
ResourceType resourceAType = resourceGraph.GetResourceType<OutgoingResource>();
125+
ResourceType resourceType = resourceGraph.GetResourceType<OutgoingResource>();
126126

127-
RelationshipAttribute single2 = resourceAType.GetRelationshipByPropertyName(nameof(OutgoingResource.Single2));
128-
RelationshipAttribute single3 = resourceAType.GetRelationshipByPropertyName(nameof(OutgoingResource.Single3));
129-
RelationshipAttribute multi4 = resourceAType.GetRelationshipByPropertyName(nameof(OutgoingResource.Multi4));
130-
RelationshipAttribute multi5 = resourceAType.GetRelationshipByPropertyName(nameof(OutgoingResource.Multi5));
127+
RelationshipAttribute single2 = resourceType.GetRelationshipByPropertyName(nameof(OutgoingResource.Single2));
128+
RelationshipAttribute single3 = resourceType.GetRelationshipByPropertyName(nameof(OutgoingResource.Single3));
129+
RelationshipAttribute multi4 = resourceType.GetRelationshipByPropertyName(nameof(OutgoingResource.Multi4));
130+
RelationshipAttribute multi5 = resourceType.GetRelationshipByPropertyName(nameof(OutgoingResource.Multi5));
131131

132132
var include = new IncludeExpression(new HashSet<IncludeElementExpression>
133133
{

0 commit comments

Comments
 (0)