Switch ConfigureServices back to protected.

Downstream users may wish to subclass and add their application specific
services.
This commit is contained in:
Paul Johnson
2022-02-12 11:57:28 +00:00
parent fcd4ad17bb
commit a1e562cab6
7 changed files with 29 additions and 13 deletions

View File

@@ -29,7 +29,7 @@ namespace Umbraco.Cms.Tests.Integration.Umbraco.Examine.Lucene.UmbracoExamine
protected IRuntimeState RunningRuntimeState { get; } = Mock.Of<IRuntimeState>(x => x.Level == RuntimeLevel.Run);
protected override void ConfigureTestSpecificServices(IServiceCollection services)
protected override void ConfigureTestServices(IServiceCollection services)
=> services.AddSingleton<IndexInitializer>();
/// <summary>