diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-11-21 20:04:58 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-21 20:04:58 +0000 |
| commit | c3fa9d00ae392e79d90a2602a573dd56b71033b1 (patch) | |
| tree | 72d01bc0df4e004278791944acb94f80088bf383 /tests | |
| parent | e33200db71934b5d45a88571255428a0b992101e (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 e8f07726c..3a8e2e65d 100644 --- a/tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs +++ b/tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs @@ -226,7 +226,7 @@ namespace Jellyfin.Networking.Tests Collection<IPObject> nc1 = nm.CreateIPCollection(settings.Split(","), false); Collection<IPObject> nc2 = nm.CreateIPCollection(compare.Split(","), false); - Assert.True(nc1.Union(nc2).AsString() == result); + Assert.Equal(nc1.Union(nc2).AsString(), result); } [Theory] |
