aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKonH <konh@yandex.ru>2021-10-03 11:05:18 +0700
committerKonH <konh@yandex.ru>2021-10-03 11:05:18 +0700
commit6cbfdea4c018a88864f1c7aa8f5b2535a9952b31 (patch)
treebd6b46f8fd86d65fae58adcd763e8c6d083a1b53 /tests
parentd45fcdd5af70dc84d69b4d25a1484d51efa29a0f (diff)
Fix warning: Type cast is redundant (#2149)
Diffstat (limited to 'tests')
-rw-r--r--tests/Jellyfin.Networking.Tests/NetworkParseTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Networking.Tests/NetworkParseTests.cs b/tests/Jellyfin.Networking.Tests/NetworkParseTests.cs
index 97c14d463..a24eee693 100644
--- a/tests/Jellyfin.Networking.Tests/NetworkParseTests.cs
+++ b/tests/Jellyfin.Networking.Tests/NetworkParseTests.cs
@@ -20,7 +20,7 @@ namespace Jellyfin.Networking.Tests
CallBase = true
};
configManager.Setup(x => x.GetConfiguration(It.IsAny<string>())).Returns(conf);
- return (IConfigurationManager)configManager.Object;
+ return configManager.Object;
}
/// <summary>