Update tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
BaronGreenback 2020-11-21 20:04:16 +00:00 committed by GitHub
parent c14f468099
commit e33200db71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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]