@@ -80,7 +80,7 @@ use crate::{
8080 git_persistence:: { GitPersistenceBackend , GitPersistenceOp } ,
8181 join_scoped,
8282 ordered_content:: OrderedContentSkipReason ,
83- test_fixtures:: { init_git_repo, run_git_in } ,
83+ test_fixtures:: { init_git_repo, run_git } ,
8484} ;
8585
8686// ============================================================================
@@ -459,9 +459,9 @@ pub(super) fn create_git_repo_fixture_with_secret_history(
459459 let filename = format ! ( "secret-{commit}.txt" ) ;
460460 let contents = format ! ( "{}\n commit-{commit}\n " , secret_fixture( ) ) ;
461461 fs:: write ( dir. path ( ) . join ( & filename) , contents) . expect ( "write fixture" ) ;
462- run_git_in ( dir. path ( ) , & [ "add" , "." ] ) ;
462+ run_git ( dir. path ( ) , & [ "add" , "." ] ) ;
463463 let message = format ! ( "fixture-{commit}" ) ;
464- run_git_in ( dir. path ( ) , & [ "commit" , "-q" , "-m" , message. as_str ( ) ] ) ;
464+ run_git ( dir. path ( ) , & [ "commit" , "-q" , "-m" , message. as_str ( ) ] ) ;
465465 }
466466
467467 dir
@@ -476,8 +476,8 @@ pub(super) fn create_clean_git_repo_fixture() -> tempfile::TempDir {
476476 "Distributed Runtime Tests" ,
477477 ) ;
478478 fs:: write ( dir. path ( ) . join ( "readme.txt" ) , "hello world\n " ) . expect ( "write fixture" ) ;
479- run_git_in ( dir. path ( ) , & [ "add" , "." ] ) ;
480- run_git_in ( dir. path ( ) , & [ "commit" , "-q" , "-m" , "fixture" ] ) ;
479+ run_git ( dir. path ( ) , & [ "add" , "." ] ) ;
480+ run_git ( dir. path ( ) , & [ "commit" , "-q" , "-m" , "fixture" ] ) ;
481481 dir
482482}
483483
@@ -898,8 +898,8 @@ pub(super) fn create_git_repo_fixture_with_corrupt_blob() -> tempfile::TempDir {
898898 "Distributed Runtime Tests" ,
899899 ) ;
900900 fs:: write ( dir. path ( ) . join ( "secret.txt" ) , secret_fixture ( ) ) . expect ( "write fixture" ) ;
901- run_git_in ( dir. path ( ) , & [ "add" , "." ] ) ;
902- run_git_in ( dir. path ( ) , & [ "commit" , "-q" , "-m" , "fixture" ] ) ;
901+ run_git ( dir. path ( ) , & [ "add" , "." ] ) ;
902+ run_git ( dir. path ( ) , & [ "commit" , "-q" , "-m" , "fixture" ] ) ;
903903
904904 // Locate and corrupt the blob loose object. Walk .git/objects
905905 // fan-out directories looking for loose files, then use `git
0 commit comments