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

Co-authored-by: Odd Stråbø <oddstr13@openshell.no>
pull/5762/head
BaronGreenback 4 years ago committed by GitHub
parent 1fe26fe352
commit 10d358c8da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -383,7 +383,8 @@ namespace Jellyfin.Networking.Tests
// User on external network, no binding - so result is the 1st external. // User on external network, no binding - so result is the 1st external.
[InlineData("jellyfin.org", "", false, "eth11")] [InlineData("jellyfin.org", "", false, "eth11")]
// Dns failure - should skip the test. // Dns failure - should skip the test.
[InlineData("ospoakdposkd.abc", "", false, "eth11")] // https://en.wikipedia.org/wiki/.test
[InlineData("invalid.domain.test", "", false, "eth11")]
// User assumed to be internal, no binding - so result is the 1st internal. // User assumed to be internal, no binding - so result is the 1st internal.
[InlineData("", "", false, "eth16")] [InlineData("", "", false, "eth16")]
public void TestBindInterfaces(string source, string bindAddresses, bool ipv6enabled, string result) public void TestBindInterfaces(string source, string bindAddresses, bool ipv6enabled, string result)

Loading…
Cancel
Save