Skip to content
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
6 changes: 4 additions & 2 deletions test/common/markdown/markdown-link.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ Describe "Verify Markdown Links" {

# there could be multiple reasons why a failure is ok
# check against the allowed failures
# 503 = service temporarily unavailable
$allowedFailures = @( 503 )
$allowedFailures = [System.Net.HttpStatusCode[]](
503, # Service Unavailable
504 # Gateway Timeout
)

$prefix = $url.Substring(0,7)

Expand Down