Skip to content

Commit 4ce7f7c

Browse files
committed
fix compile time warning
1 parent 429682d commit 4ce7f7c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gix/tests/repository/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate::util;
21
use gix::Repository;
32

43
mod config;
@@ -30,6 +29,6 @@ fn size_in_memory() {
3029
#[cfg(feature = "parallel")]
3130
fn thread_safe_repository_is_sync() -> crate::Result {
3231
fn f<T: Send + Sync + Clone>(_t: T) {}
33-
f(util::basic_repo()?.into_sync());
32+
f(crate::util::basic_repo()?.into_sync());
3433
Ok(())
3534
}

0 commit comments

Comments
 (0)