summaryrefslogtreecommitdiffstats
path: root/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors.rs b/src/errors.rs
index 1e186df..2813bfd 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -182,7 +182,7 @@ mod tests {
#[test]
fn from_http_error() {
- let err: HttpError = reqwest::get("not an actual URL").unwrap_err();
+ let err: HttpError = reqwest::blocking::get("not an actual URL").unwrap_err();
let err: Error = Error::from(err);
assert_is!(err, Error::Http(..));
}