Browse Source
Remove NullLoggerFactory from CreateMapper method
pull/24176/head
Ma Liming
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
framework/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/AutoMapperExpressionExtensions_Tests.cs
|
|
|
@ -102,7 +102,7 @@ public class AutoMapperExpressionExtensions_Tests |
|
|
|
|
|
|
|
private static IMapper CreateMapper(Action<IMapperConfigurationExpression> configure) |
|
|
|
{ |
|
|
|
var configuration = new MapperConfiguration(configure, NullLoggerFactory.Instance); |
|
|
|
var configuration = new MapperConfiguration(configure); |
|
|
|
configuration.AssertConfigurationIsValid(); |
|
|
|
return configuration.CreateMapper(); |
|
|
|
} |
|
|
|
|