@@ -38,7 +38,7 @@ fn from_bare_git_dir_without_config_file() -> crate::Result {
38
38
fn from_inside_bare_git_dir ( ) -> crate :: Result {
39
39
let git_dir = repo_path ( ) ?. join ( "bare.git" ) ;
40
40
let dir = git_dir. join ( "objects" ) ;
41
- let ( path, trust) = git_discover:: upwards ( & dir) ?;
41
+ let ( path, trust) = git_discover:: upwards ( dir) ?;
42
42
assert_eq ! (
43
43
path. as_ref( ) ,
44
44
git_dir,
@@ -89,7 +89,7 @@ fn from_working_dir_no_config() -> crate::Result {
89
89
fn from_nested_dir ( ) -> crate :: Result {
90
90
let working_dir = repo_path ( ) ?;
91
91
let dir = working_dir. join ( "some/very/deeply/nested/subdir" ) ;
92
- let ( path, trust) = git_discover:: upwards ( & dir) ?;
92
+ let ( path, trust) = git_discover:: upwards ( dir) ?;
93
93
assert_eq ! ( path. kind( ) , Kind :: WorkTree { linked_git_dir: None } ) ;
94
94
assert_eq ! ( path. as_ref( ) , working_dir, "a working tree dir yields the git dir" ) ;
95
95
assert_eq ! ( trust, expected_trust( ) ) ;
@@ -105,7 +105,7 @@ fn from_dir_with_dot_dot() -> crate::Result {
105
105
// exploring ancestors.)
106
106
let working_dir = repo_path ( ) ?;
107
107
let dir = working_dir. join ( "some/very/deeply/nested/subdir/../../../../../.." ) ;
108
- let ( path, trust) = git_discover:: upwards ( & dir) ?;
108
+ let ( path, trust) = git_discover:: upwards ( dir) ?;
109
109
assert_ne ! (
110
110
path. as_ref( ) . canonicalize( ) ?,
111
111
working_dir. canonicalize( ) ?,
@@ -140,7 +140,7 @@ fn from_dir_with_dot_dot() -> crate::Result {
140
140
fn from_nested_dir_inside_a_git_dir ( ) -> crate :: Result {
141
141
let working_dir = repo_path ( ) ?;
142
142
let dir = working_dir. join ( ".git" ) . join ( "objects" ) ;
143
- let ( path, trust) = git_discover:: upwards ( & dir) ?;
143
+ let ( path, trust) = git_discover:: upwards ( dir) ?;
144
144
assert_eq ! ( path. kind( ) , Kind :: WorkTree { linked_git_dir: None } ) ;
145
145
assert_eq ! ( path. as_ref( ) , working_dir, "we find .git directories on the way" ) ;
146
146
assert_eq ! ( trust, expected_trust( ) ) ;
@@ -226,7 +226,7 @@ fn cross_fs() -> crate::Result {
226
226
return Ok ( ( ) ) ;
227
227
}
228
228
229
- let top_level_repo = git_testtools:: scripted_fixture_repo_writable ( "make_basic_repo.sh" ) ?;
229
+ let top_level_repo = git_testtools:: scripted_fixture_writable ( "make_basic_repo.sh" ) ?;
230
230
231
231
let _cleanup = {
232
232
// Create an empty dmg file
@@ -269,7 +269,7 @@ fn cross_fs() -> crate::Result {
269
269
) ) ;
270
270
271
271
let ( repo_path, _trust) = git_discover:: upwards_opts (
272
- & top_level_repo. path ( ) . join ( "remote" ) ,
272
+ top_level_repo. path ( ) . join ( "remote" ) ,
273
273
Options {
274
274
cross_fs : true ,
275
275
..Default :: default ( )
@@ -307,7 +307,7 @@ fn do_not_shorten_absolute_paths() -> crate::Result {
307
307
mod submodules {
308
308
#[ test]
309
309
fn by_their_worktree_checkout ( ) -> crate :: Result {
310
- let dir = git_testtools:: scripted_fixture_repo_read_only ( "make_submodules.sh" ) ?;
310
+ let dir = git_testtools:: scripted_fixture_read_only ( "make_submodules.sh" ) ?;
311
311
let parent = dir. join ( "with-submodules" ) ;
312
312
let modules = parent. join ( ".git" ) . join ( "modules" ) ;
313
313
for module in [ "m1" , "dir/m1" ] {
@@ -322,7 +322,7 @@ mod submodules {
322
322
submodule_m1_gitdir
323
323
) ;
324
324
325
- let ( path, _trust) = git_discover:: upwards ( & submodule_m1_workdir. join ( "subdir" ) ) ?;
325
+ let ( path, _trust) = git_discover:: upwards ( submodule_m1_workdir. join ( "subdir" ) ) ?;
326
326
assert ! (
327
327
matches!( path, git_discover:: repository:: Path :: LinkedWorkTree { ref work_dir, ref git_dir} if work_dir == & submodule_m1_workdir && git_dir == & submodule_m1_gitdir) ,
328
328
"{:?} should match {:?} {:?}" ,
@@ -336,7 +336,7 @@ mod submodules {
336
336
337
337
#[ test]
338
338
fn by_their_module_git_dir ( ) -> crate :: Result {
339
- let dir = git_testtools:: scripted_fixture_repo_read_only ( "make_submodules.sh" ) ?;
339
+ let dir = git_testtools:: scripted_fixture_read_only ( "make_submodules.sh" ) ?;
340
340
let modules = dir. join ( "with-submodules" ) . join ( ".git" ) . join ( "modules" ) ;
341
341
for module in [ "m1" , "dir/m1" ] {
342
342
let submodule_m1_gitdir = modules. join ( module) ;
@@ -353,5 +353,5 @@ mod submodules {
353
353
}
354
354
355
355
pub ( crate ) fn repo_path ( ) -> crate :: Result < PathBuf > {
356
- git_testtools:: scripted_fixture_repo_read_only ( "make_basic_repo.sh" )
356
+ git_testtools:: scripted_fixture_read_only ( "make_basic_repo.sh" )
357
357
}
0 commit comments