Fix: remove URL that is currently returning a 503.

This commit is contained in:
dblock 2021-09-01 10:34:56 -04:00 committed by Matthias
parent ef65067625
commit 739a3d6e41
2 changed files with 1 additions and 3 deletions

View file

@ -19,7 +19,5 @@ Test HTTP and HTTPS for the same site.
http://example.org
https://example.org
https://www.peerlyst.com/posts/a-list-of-static-analysis-tools-for-c-c-peerlyst
test@example.org
mailto:test2@example.org

View file

@ -364,7 +364,7 @@ mod cli {
.assert()
.success();
let expected = r#"{"total":11,"successful":11,"failures":0,"timeouts":0,"redirects":0,"excludes":0,"errors":0,"fail_map":{}}"#;
let expected = r#"{"total":10,"successful":10,"failures":0,"timeouts":0,"redirects":0,"excludes":0,"errors":0,"fail_map":{}}"#;
let output = fs::read_to_string(&outfile)?;
assert_eq!(output.split_whitespace().collect::<String>(), expected);
fs::remove_file(outfile)?;