Skip to content

Commit 1d18b4d

Browse files
committed
Update ObjectFillerSetup.cs
1 parent cca50c0 commit 1d18b4d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ObjectFiller/ObjectFillerSetup.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Reflection;
44
using Tynamix.ObjectFiller.Plugins;
@@ -16,7 +16,7 @@ public ObjectFillerSetup()
1616
DictionaryKeyMaxCount = 10;
1717
TypeToRandomFunc = new Dictionary<Type, Func<object>>();
1818
PropertyToRandomFunc = new Dictionary<PropertyInfo, Func<object>>();
19-
ProperiesToIgnore = new List<PropertyInfo>();
19+
PropertiesToIgnore = new List<PropertyInfo>();
2020
TypesToIgnore = new List<Type>();
2121

2222
InterfaceToImplementation = new Dictionary<Type, Type>();
@@ -68,7 +68,7 @@ private void SetDefaultRandomizer()
6868
/// <summary>
6969
/// List with all properties which will be ignored while generating test data
7070
/// </summary>
71-
public List<PropertyInfo> ProperiesToIgnore { get; private set; }
71+
public List<PropertyInfo> PropertiesToIgnore { get; private set; }
7272

7373
/// <summary>
7474
/// All types which will be ignored completly
@@ -100,4 +100,4 @@ private void SetDefaultRandomizer()
100100
/// </summary>
101101
public IInterfaceMocker InterfaceMocker { get; set; }
102102
}
103-
}
103+
}

0 commit comments

Comments
 (0)