@@ -526,9 +526,9 @@ def test_merge_conflict(cap_out, store, in_merge_conflict):
526526
527527def test_merge_conflict_modified (cap_out , store , in_merge_conflict ):
528528 # Touch another file so we have unstaged non-conflicting things
529- assert os .path .exists ('dummy ' )
530- with open ('dummy ' , 'w' ) as dummy_file :
531- dummy_file .write ('bar\n baz\n ' )
529+ assert os .path .exists ('placeholder ' )
530+ with open ('placeholder ' , 'w' ) as placeholder_file :
531+ placeholder_file .write ('bar\n baz\n ' )
532532
533533 ret , printed = _do_run (cap_out , store , in_merge_conflict , run_opts ())
534534 assert ret == 1
@@ -831,9 +831,9 @@ def test_local_hook_passes(cap_out, store, repo_with_passing_hook):
831831 }
832832 add_config_to_repo (repo_with_passing_hook , config )
833833
834- with open ('dummy .py' , 'w' ) as staged_file :
834+ with open ('placeholder .py' , 'w' ) as staged_file :
835835 staged_file .write ('"""TODO: something"""\n ' )
836- cmd_output ('git' , 'add' , 'dummy .py' )
836+ cmd_output ('git' , 'add' , 'placeholder .py' )
837837
838838 _test_run (
839839 cap_out ,
@@ -858,9 +858,9 @@ def test_local_hook_fails(cap_out, store, repo_with_passing_hook):
858858 }
859859 add_config_to_repo (repo_with_passing_hook , config )
860860
861- with open ('dummy .py' , 'w' ) as staged_file :
861+ with open ('placeholder .py' , 'w' ) as staged_file :
862862 staged_file .write ('"""TODO: something"""\n ' )
863- cmd_output ('git' , 'add' , 'dummy .py' )
863+ cmd_output ('git' , 'add' , 'placeholder .py' )
864864
865865 _test_run (
866866 cap_out ,
0 commit comments