Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/System.Net.Http/tests/FunctionalTests/TestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public static Task WhenAllCompletedOrAnyFailedWithTimeout(int timeoutInMilliseco
public static IPAddress GetIPv6LinkLocalAddress() =>
NetworkInterface
.GetAllNetworkInterfaces()
.Where(i => i.Description != "PANGP Virtual Ethernet Adapter") // This is a VPN adapter, but is reported as a regular Ethernet interface with
.Where(i => !i.Description.StartsWith("PANGP Virtual Ethernet")) // This is a VPN adapter, but is reported as a regular Ethernet interface with
// a valid link-local address, but the link-local address doesn't actually work.
// So just manually filter it out.
.SelectMany(i => i.GetIPProperties().UnicastAddresses)
Expand Down