summaryrefslogtreecommitdiffstats
path: root/src/git/testutil/with_temp_repository.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/git/testutil/with_temp_repository.rs')
-rw-r--r--src/git/testutil/with_temp_repository.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/git/testutil/with_temp_repository.rs b/src/git/testutil/with_temp_repository.rs
index cfffaad..b9c741b 100644
--- a/src/git/testutil/with_temp_repository.rs
+++ b/src/git/testutil/with_temp_repository.rs
@@ -20,7 +20,6 @@ where F: FnOnce(&Path) {
/// # Panics
///
/// If the repository cannot be created for any reason, this function will panic.
-#[inline]
pub(crate) fn with_temp_repository<F>(callback: F)
where F: FnOnce(Repository) {
with_temporary_path(|path| {
@@ -45,7 +44,6 @@ where F: FnOnce(Repository) {
/// # Panics
///
/// If the repository cannot be created for any reason, this function will panic.
-#[inline]
#[allow(clippy::panic)]
pub(crate) fn with_temp_bare_repository<F>(callback: F)
where F: FnOnce(Repository) {