Browse Source

Remove NullLoggerFactory from CreateMapper method

pull/24176/head
Ma Liming 3 months ago
committed by GitHub
parent
commit
50c6ddd017
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      framework/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/AutoMapperExpressionExtensions_Tests.cs

2
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();
}

Loading…
Cancel
Save