@@ -158,7 +158,7 @@ fn test_sync_pull() -> eyre::Result<()> {
158158 let ( stdout, _stderr) = cloned_repo. branchless ( "sync" , & [ "-p" ] ) ?;
159159 let stdout: String = remove_nondeterministic_lines ( stdout) ;
160160 insta:: assert_snapshot!( stdout, @r###"
161- branchless: running command: <git-executable> fetch --all
161+ branchless: running command: <git-executable> fetch origin
162162 Fast-forwarding branch master to f81d55c create test5.txt
163163 Attempting rebase in-memory...
164164 [1/1] Committed as: 2831fb5 create test6.txt
@@ -183,7 +183,7 @@ fn test_sync_pull() -> eyre::Result<()> {
183183 let ( stdout, _stderr) = cloned_repo. branchless ( "sync" , & [ "-p" ] ) ?;
184184 let stdout: String = remove_nondeterministic_lines ( stdout) ;
185185 insta:: assert_snapshot!( stdout, @r###"
186- branchless: running command: <git-executable> fetch --all
186+ branchless: running command: <git-executable> fetch origin
187187 Not updating branch master at f81d55c create test5.txt
188188 Not moving up-to-date stack at 2831fb5 create test6.txt
189189 "### ) ;
@@ -297,7 +297,7 @@ fn test_sync_divergent_main_branch() -> eyre::Result<()> {
297297 let ( stdout, _stderr) = cloned_repo. branchless ( "sync" , & [ "-p" ] ) ?;
298298 let stdout = remove_nondeterministic_lines ( stdout) ;
299299 insta:: assert_snapshot!( stdout, @r###"
300- branchless: running command: <git-executable> fetch --all
300+ branchless: running command: <git-executable> fetch origin
301301 Syncing branch master
302302 Attempting rebase in-memory...
303303 [1/1] Committed as: f81d55c create test5.txt
@@ -371,7 +371,7 @@ fn test_sync_no_delete_main_branch() -> eyre::Result<()> {
371371 Successfully rebased and updated detached HEAD.
372372 "### ) ;
373373 insta:: assert_snapshot!( stdout, @r###"
374- branchless: running command: <git-executable> fetch --all
374+ branchless: running command: <git-executable> fetch origin
375375 Syncing branch master
376376 branchless: running command: <git-executable> diff --quiet
377377 Calling Git for on-disk rebase...
@@ -469,10 +469,10 @@ fn test_sync_checked_out_main_branch() -> eyre::Result<()> {
469469 let ( stdout, _stderr) = cloned_repo. branchless ( "sync" , & [ "--pull" ] ) ?;
470470 let stdout: String = remove_nondeterministic_lines ( stdout) ;
471471 insta:: assert_snapshot!( stdout, @r###"
472- branchless: running command: <git-executable> fetch --all
473- Fast-forwarding branch master to 96d1c37 create test2.txt
474- branchless: running command: <git-executable> rebase 96d1c37a3d4363611c49f7e52186e189a04c531f
475- "### ) ;
472+ branchless: running command: <git-executable> fetch origin
473+ Fast-forwarding branch master to 96d1c37 create test2.txt
474+ branchless: running command: <git-executable> rebase 96d1c37a3d4363611c49f7e52186e189a04c531f
475+ "### ) ;
476476 }
477477
478478 {
@@ -524,7 +524,7 @@ fn test_sync_checked_out_main_with_dirty_working_copy() -> eyre::Result<()> {
524524 error: Please commit or stash them.
525525 "### ) ;
526526 insta:: assert_snapshot!( stdout, @r###"
527- branchless: running command: <git-executable> fetch --all
527+ branchless: running command: <git-executable> fetch origin
528528 Not updating branch master at 62fc20d create test1.txt
529529 branchless: running command: <git-executable> rebase 62fc20d2a290daea0d52bdc2ed2ad4be6491010e
530530 "### ) ;
0 commit comments