Skip to content

Commit

Permalink
tests: Fix lint errors when building with all features enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
  • Loading branch information
otavio committed Jul 26, 2021
1 parent 81c1ce5 commit bba289c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async fn get_a_file_from_tar_futures() {
let mut target = Vec::default();

let written =
futures_support::uncompress_archive_file(&mut source, &mut target, &"tree/branch2/leaf")
futures_support::uncompress_archive_file(&mut source, &mut target, "tree/branch2/leaf")
.await
.expect("Failed to get the file");
assert_eq!(
Expand All @@ -115,7 +115,7 @@ async fn get_a_file_from_tar_tokio() {
let mut target = Vec::default();

let written =
tokio_support::uncompress_archive_file(&mut source, &mut target, &"tree/branch2/leaf")
tokio_support::uncompress_archive_file(&mut source, &mut target, "tree/branch2/leaf")
.await
.expect("Failed to get the file");
assert_eq!(
Expand Down

0 comments on commit bba289c

Please sign in to comment.