Skip to content

Commit

Permalink
fixed ssl error test
Browse files Browse the repository at this point in the history
  • Loading branch information
epi052 committed Jun 15, 2024
1 parent f149800 commit d2e917d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_heuristics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ fn test_single_target_cannot_connect_due_to_ssl_errors() -> Result<(), Box<dyn s
.arg(file.as_os_str())
.assert()
.success()
.stdout(
predicate::str::contains("Could not connect to https://expired.badssl.com due to SSL errors (run with -k to ignore), skipping...", )
);
.stdout(predicate::str::contains(
"Could not connect to https://expired.badssl.com",
));

teardown_tmp_directory(tmp_dir);
Ok(())
Expand Down

0 comments on commit d2e917d

Please sign in to comment.