Skip to content

Commit

Permalink
Update aws/rust-runtime/aws-http/src/content_encoding.rs
Browse files Browse the repository at this point in the history
Co-authored-by: John DiSanti <[email protected]>
  • Loading branch information
jjant and jdisanti authored Oct 11, 2022
1 parent 70785a1 commit 2cf21d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/rust-runtime/aws-http/src/content_encoding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ mod tests {
};

let timeout_duration = Duration::from_secs(3);
if (tokio::time::timeout(timeout_duration, test_fut).await).is_err() {
if tokio::time::timeout(timeout_duration, test_fut).await.is_err() {
panic!("test_aws_chunked_encoding timed out after {timeout_duration:?}");
}
}
Expand Down

0 comments on commit 2cf21d1

Please sign in to comment.