aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Integration.Tests/JellyfinApplicationFactory.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2022-11-27 14:49:21 +0100
committerGitHub <noreply@github.com>2022-11-27 06:49:21 -0700
commit9c1da522c66aa4ec5e46eea943dd1ef60531bfa6 (patch)
treee36c2baade1f08d6dff055385d56f64baac4efac /tests/Jellyfin.Server.Integration.Tests/JellyfinApplicationFactory.cs
parente1bd5684e597b1719beabd6b1d32ebf61a23a434 (diff)
Fix last CA1305 error (#8806)
Diffstat (limited to 'tests/Jellyfin.Server.Integration.Tests/JellyfinApplicationFactory.cs')
-rw-r--r--tests/Jellyfin.Server.Integration.Tests/JellyfinApplicationFactory.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Integration.Tests/JellyfinApplicationFactory.cs b/tests/Jellyfin.Server.Integration.Tests/JellyfinApplicationFactory.cs
index 48c49bf84..c38faeda1 100644
--- a/tests/Jellyfin.Server.Integration.Tests/JellyfinApplicationFactory.cs
+++ b/tests/Jellyfin.Server.Integration.Tests/JellyfinApplicationFactory.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Concurrent;
+using System.Globalization;
using System.IO;
using System.Threading;
using Emby.Server.Implementations;
@@ -28,7 +29,9 @@ namespace Jellyfin.Server.Integration.Tests
static JellyfinApplicationFactory()
{
// Perform static initialization that only needs to happen once per test-run
- Log.Logger = new LoggerConfiguration().WriteTo.Console().CreateLogger();
+ Log.Logger = new LoggerConfiguration()
+ .WriteTo.Console(formatProvider: CultureInfo.InvariantCulture)
+ .CreateLogger();
Program.PerformStaticInitialization();
}