aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2021-02-27 20:12:55 +0000
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2021-02-27 23:32:22 +0000
commitf666b7e10268a5c19228d8fdb1bd313a642b0915 (patch)
treee7ba0930be7eb856e39428e89f68b04ce249f453 /tests
parent0d3606a7466d55d217e1dffc0539cfa1c189eb7d (diff)
fix
Diffstat (limited to 'tests')
-rw-r--r--tests/Jellyfin.Api.Tests/JellyfinApplicationFactory.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Jellyfin.Api.Tests/JellyfinApplicationFactory.cs b/tests/Jellyfin.Api.Tests/JellyfinApplicationFactory.cs
index 54f8eb225..262e8f912 100644
--- a/tests/Jellyfin.Api.Tests/JellyfinApplicationFactory.cs
+++ b/tests/Jellyfin.Api.Tests/JellyfinApplicationFactory.cs
@@ -8,6 +8,7 @@ using MediaBrowser.Common;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc.Testing;
using Microsoft.AspNetCore.TestHost;
+using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Serilog;
@@ -77,6 +78,7 @@ namespace Jellyfin.Api.Tests
appPaths,
loggerFactory,
commandLineOpts,
+ new ConfigurationBuilder().Build(),
new ManagedFileSystem(loggerFactory.CreateLogger<ManagedFileSystem>(), appPaths),
serviceCollection);
_disposableComponents.Add(appHost);