Skip to content

Commit

Permalink
Test against github.com
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Aug 17, 2023
1 parent c42649e commit 1e01f20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/hello-rustls/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extern crate curl;
#[tokio::main]
async fn main() {
let response = reqwest::Client::new()
.get("http://www.baidu.com")
.get("https://www.github.com")
.send()
.await
.expect("send");
Expand Down
2 changes: 1 addition & 1 deletion tests/hello-tls/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#[tokio::main]
async fn main() {
let response = reqwest::Client::new()
.get("http://www.baidu.com")
.get("https://www.github.com")
.send()
.await
.expect("send");
Expand Down

0 comments on commit 1e01f20

Please sign in to comment.