diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-03 07:52:06 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-03 07:52:06 -0600 |
| commit | 3398f7f953864c47d66b49287fcc2b613b0c03de (patch) | |
| tree | b2948acf8016f85e80f0495362a5f49bb079d6f6 /tests/Jellyfin.Server.Integration.Tests/TestAppHost.cs | |
| parent | f444e93a56f6613baa8a722099159f2935d4d942 (diff) | |
| parent | 45ceba7ad152de85956af51272c53c29cbbd5a70 (diff) | |
Merge branch 'master' into client-logger
Diffstat (limited to 'tests/Jellyfin.Server.Integration.Tests/TestAppHost.cs')
| -rw-r--r-- | tests/Jellyfin.Server.Integration.Tests/TestAppHost.cs | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/tests/Jellyfin.Server.Integration.Tests/TestAppHost.cs b/tests/Jellyfin.Server.Integration.Tests/TestAppHost.cs index 0a463cfa3..bf74efa09 100644 --- a/tests/Jellyfin.Server.Integration.Tests/TestAppHost.cs +++ b/tests/Jellyfin.Server.Integration.Tests/TestAppHost.cs @@ -2,9 +2,7 @@ using System.Collections.Generic; using System.Reflection; using Emby.Server.Implementations; using MediaBrowser.Controller; -using MediaBrowser.Model.IO; using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace Jellyfin.Server.Integration.Tests @@ -21,22 +19,16 @@ namespace Jellyfin.Server.Integration.Tests /// <param name="loggerFactory">The <see cref="ILoggerFactory" /> to be used by the <see cref="CoreAppHost" />.</param> /// <param name="options">The <see cref="StartupOptions" /> to be used by the <see cref="CoreAppHost" />.</param> /// <param name="startup">The <see cref="IConfiguration" /> to be used by the <see cref="CoreAppHost" />.</param> - /// <param name="fileSystem">The <see cref="IFileSystem" /> to be used by the <see cref="CoreAppHost" />.</param> - /// <param name="collection">The <see cref="IServiceCollection"/> to be used by the <see cref="CoreAppHost"/>.</param> public TestAppHost( IServerApplicationPaths applicationPaths, ILoggerFactory loggerFactory, IStartupOptions options, - IConfiguration startup, - IFileSystem fileSystem, - IServiceCollection collection) + IConfiguration startup) : base( applicationPaths, loggerFactory, options, - startup, - fileSystem, - collection) + startup) { } |
