Skip to content

Commit

Permalink
Update WithAutoProperties.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Dec 10, 2019
1 parent 7b68e5a commit 904edaf
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ public void Run()
{
var typeDefinition = DefinitionFinder.FindType<Person>();
var node = new TypeNode
{
TypeDefinition = typeDefinition,
Mappings = ModuleWeaver.GetMappings(typeDefinition).ToList()
};
{
TypeDefinition = typeDefinition,
Mappings = ModuleWeaver.GetMappings(typeDefinition).ToList()
};
new IlGeneratedByDependencyReader(node).Process();
Assert.Equal(2, node.PropertyDependencies.Count);
var first = node.PropertyDependencies[0];
Expand Down

0 comments on commit 904edaf

Please sign in to comment.