There was an error while loading. Please reload this page.
1 parent ece7b44 commit 5941b89Copy full SHA for 5941b89
1 file changed
test/powershell/Modules/Microsoft.PowerShell.Utility/WebCmdlets.Tests.ps1
@@ -1204,7 +1204,9 @@ Describe "Invoke-WebRequest tests" -Tags "Feature" {
1204
$result.Output.RawContent | Should Match ([regex]::Escape('Content-Length: 2'))
1205
}
1206
1207
- It "Verifies Invoke-WebRequest Supports Multiple response headers with same name" {
+ # Test pending due to HttpListener limitation on Linux/macOS
1208
+ # https://github.com/PowerShell/PowerShell/pull/4640
1209
+ It "Verifies Invoke-WebRequest Supports Multiple response headers with same name" -Pending {
1210
$headers = @{
1211
'X-Fake-Header' = 'testvalue01','testvalue02'
1212
} | ConvertTo-Json -Compress
0 commit comments