@@ -16,13 +16,13 @@ def f1_is_a_conflict_file(tmpdir):
1616 repo2 = tmpdir .join ('repo2' )
1717 repo2_f1 = repo2 .join ('f1' )
1818
19- cmd_output ('git' , 'init' , '--' , repo1 . strpath )
19+ cmd_output ('git' , 'init' , '--' , str ( repo1 ) )
2020 with repo1 .as_cwd ():
2121 repo1_f1 .ensure ()
2222 cmd_output ('git' , 'add' , '.' )
2323 cmd_output ('git' , 'commit' , '--no-gpg-sign' , '-m' , 'commit1' )
2424
25- cmd_output ('git' , 'clone' , repo1 . strpath , repo2 . strpath )
25+ cmd_output ('git' , 'clone' , str ( repo1 ), str ( repo2 ) )
2626
2727 # Commit in master
2828 with repo1 .as_cwd ():
@@ -71,13 +71,13 @@ def repository_pending_merge(tmpdir):
7171 repo2 = tmpdir .join ('repo2' )
7272 repo2_f1 = repo2 .join ('f1' )
7373 repo2_f2 = repo2 .join ('f2' )
74- cmd_output ('git' , 'init' , repo1 . strpath )
74+ cmd_output ('git' , 'init' , str ( repo1 ) )
7575 with repo1 .as_cwd ():
7676 repo1_f1 .ensure ()
7777 cmd_output ('git' , 'add' , '.' )
7878 cmd_output ('git' , 'commit' , '--no-gpg-sign' , '-m' , 'commit1' )
7979
80- cmd_output ('git' , 'clone' , repo1 . strpath , repo2 . strpath )
80+ cmd_output ('git' , 'clone' , str ( repo1 ), str ( repo2 ) )
8181
8282 # Commit in master
8383 with repo1 .as_cwd ():
0 commit comments