aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-11-21 20:04:16 +0000
committerGitHub <noreply@github.com>2020-11-21 20:04:16 +0000
commite33200db71934b5d45a88571255428a0b992101e (patch)
tree1f8052cb45341521923e01f60ec228cac42e27bb
parentc14f468099e9994f6b83b8f1a7710b43833bf25b (diff)
Update tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
-rw-r--r--tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs b/tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs
index 189396439..e8f07726c 100644
--- a/tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs
+++ b/tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs
@@ -191,7 +191,7 @@ namespace Jellyfin.Networking.Tests
// Test network addresses of collection.
nc = nm.CreateIPCollection(settings.Split(","), false);
nc = nc.AsNetworks();
- Assert.True(string.Equals(nc?.AsString(), result5, System.StringComparison.OrdinalIgnoreCase));
+ Assert.Equal(nc.AsString(), result5);
}
[Theory]