fix(test_cookie_jar): use google.com/ncr (#1336)

google.com might redirect to other domains, causing cookie_jar test to fail.
This commit is contained in:
Levi Zim 2024-01-06 19:31:23 +08:00 committed by GitHub
parent aacca04174
commit 704126eab4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1339,7 +1339,7 @@ mod cli {
.arg("-")
// Using Google as a test target because I couldn't
// get the mock server to work with the cookie jar
.write_stdin("https://google.com")
.write_stdin("https://google.com/ncr")
.assert()
.success();