Skip to content
This repository has been archived by the owner on Oct 23, 2022. It is now read-only.

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Joonas Koivunen committed Sep 4, 2020
1 parent 215ef98 commit 47dbad2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/repo/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ impl DataStore for FsDataStore {
}

#[cfg(test)]
crate::tests_for_ds_impl!(common_tests, |p| crate::repo::fs::FsDataStore::new(p));
crate::tests_for_ds_impl!(common_tests, crate::repo::fs::FsDataStore::new);
2 changes: 1 addition & 1 deletion src/repo/mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ pub enum PinUpdateError {
}

#[cfg(test)]
crate::tests_for_ds_impl!(common_tests, |p| crate::repo::mem::MemDataStore::new(p));
crate::tests_for_ds_impl!(common_tests, crate::repo::mem::MemDataStore::new);

#[cfg(test)]
mod tests {
Expand Down

0 comments on commit 47dbad2

Please sign in to comment.