diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-11-21 20:05:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-21 20:05:31 +0000 |
| commit | 1e13627a944249dfd94e5a0befd943e726bf0f28 (patch) | |
| tree | 6ff509607c6b42cd17ed4bc988504d3cd1a0384c /tests | |
| parent | 3f2c331755f48679d05bc09acf39882d7a574196 (diff) | |
Update tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs | 2 |
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 78db84d91..f7fc9ebc6 100644 --- a/tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs +++ b/tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs @@ -179,7 +179,7 @@ namespace Jellyfin.Networking.Tests // Test included, non IP6. nc = nm.CreateIPCollection(settings.Split(","), false); - Assert.True(string.Equals(nc?.AsString(), result2, System.StringComparison.OrdinalIgnoreCase)); + Assert.Equal(nc.AsString(), result2); // Test excluded, including IPv6. nc = nm.CreateIPCollection(settings.Split(","), true); |
