fix: increase minimum request timeout (#1078)

This commit is contained in:
Matthias Seitz
2023-01-30 16:10:50 +01:00
committed by GitHub
parent 6f89ad086b
commit 6b795be77f
2 changed files with 4 additions and 4 deletions

View File

@ -113,7 +113,7 @@ async fn test_get_header() {
HeadersRequest { start: hash.into(), limit: 1, direction: HeadersDirection::Falling };
let res = fetch0.get_headers(req).await;
assert!(res.is_ok());
assert!(res.is_ok(), "{res:?}");
let headers = res.unwrap().1 .0;
assert_eq!(headers.len(), 1);