Skip to content

Commit d39d8f9

Browse files
Fix typo in BaseOneWayProfileTests
1 parent 9f8e3dd commit d39d8f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Ace.CSharp.StructuredAutoMapper.Abstractions.Test/BaseOneWayProfileTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ protected BaseOneWayProfileTests()
1414
{
1515
config.AddProfile(typeof(TProfile));
1616

17-
foreach (var profile in RelatedtMappingProfiles)
17+
foreach (var profile in RelatedMappingProfiles)
1818
{
1919
config.AddProfile(profile);
2020
}
@@ -27,7 +27,7 @@ protected BaseOneWayProfileTests()
2727

2828
protected abstract Action<TLeft, TRight>? LeftToRightAssertions { get; }
2929

30-
protected virtual IEnumerable<Type> RelatedtMappingProfiles { get; } = [];
30+
protected virtual IEnumerable<Type> RelatedMappingProfiles { get; } = [];
3131

3232
public virtual void GivenMapFromLeftToRightWhenSourceIsNullThenHandlesGracefully()
3333
{

0 commit comments

Comments
 (0)