Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Feb 7, 2024
1 parent 761da3f commit f6e2e04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/sparse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ mod remote {

/// Reuses connections. This test is intended to be run under strace to
/// validate that <n> connections are not being created
/// https://github.com/EmbarkStudios/tame-index/issues/46
/// <https://github.com/EmbarkStudios/tame-index/issues/46>
#[test]
fn reuses_connection() {
let td = utils::tempdir();
Expand All @@ -402,7 +402,7 @@ mod remote {
let rsi = tame_index::index::RemoteSparseIndex::new(index, client);

let results = rsi.krates(
KRATES.into_iter().map(|s| s.to_string()).collect(),
KRATES.iter().map(|s| (*s).to_string()).collect(),
false,
lock,
);
Expand All @@ -425,7 +425,7 @@ mod remote {

let results = rsi
.krates_blocking(
KRATES.into_iter().map(|s| s.to_string()).collect(),
KRATES.iter().map(|s| (*s).to_string()).collect(),
false,
None,
lock,
Expand Down

0 comments on commit f6e2e04

Please sign in to comment.