Browse Source

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

Co-authored-by: Cody Robibero <cody@robibe.ro>
BaronGreenback 4 years ago
parent
commit
23fa9533af

+ 1 - 1
tests/Jellyfin.Networking.Tests/NetworkTesting/NetworkParseTests.cs

@@ -476,7 +476,7 @@ namespace Jellyfin.Networking.Tests
 
 
             var intf = nm.GetBindInterface(source, out int? _);
             var intf = nm.GetBindInterface(source, out int? _);
 
 
-            Assert.True(string.Equals(intf, result, System.StringComparison.OrdinalIgnoreCase));
+            Assert.Equal(intf, result);
         }
         }
     }
     }
 }
 }