fix tests

This commit is contained in:
Martin Algesten
2019-06-21 15:53:23 +02:00
parent 32279c84e0
commit 9d069b60b4
2 changed files with 8 additions and 8 deletions

View File

@@ -251,7 +251,7 @@ impl Response {
/// use std::io::Read;
///
/// let resp =
/// ureq::get("https://s3.amazonaws.com/foosrvr/hello_world.json")
/// ureq::get("https://ureq.s3.eu-central-1.amazonaws.com/hello_world.json")
/// .call();
///
/// assert!(resp.has("Content-Length"));
@@ -329,7 +329,7 @@ impl Response {
///
/// ```
/// let resp =
/// ureq::get("https://s3.amazonaws.com/foosrvr/hello_world.json")
/// ureq::get("https://ureq.s3.eu-central-1.amazonaws.com/hello_world.json")
/// .call();
///
/// let text = resp.into_string().unwrap();
@@ -372,7 +372,7 @@ impl Response {
///
/// ```
/// let resp =
/// ureq::get("https://s3.amazonaws.com/foosrvr/hello_world.json")
/// ureq::get("https://ureq.s3.eu-central-1.amazonaws.com/hello_world.json")
/// .call();
///
/// let json = resp.into_json().unwrap();