@@ -56,7 +56,7 @@ def test_content_from_string_invalid_type_should_raise(self):
5656
5757 @patch_object (Blob , 'size' )
5858 @patch_object (Git , '_call_process' )
59- def test_slash (self , blob , git ):
59+ def test_slash (self , git , blob ):
6060 git .return_value = fixture ('ls_tree_a' )
6161 blob .return_value = 1
6262
@@ -70,7 +70,7 @@ def test_slash(self, blob, git):
7070
7171 @patch_object (Blob , 'size' )
7272 @patch_object (Git , '_call_process' )
73- def test_slash_with_zero_length_file (self , blob , git ):
73+ def test_slash_with_zero_length_file (self , git , blob ):
7474 git .return_value = fixture ('ls_tree_a' )
7575 blob .return_value = 0
7676
@@ -97,7 +97,7 @@ def test_slash_with_commits(self, git):
9797
9898 @patch_object (Blob , 'size' )
9999 @patch_object (Git , '_call_process' )
100- def test_dict (self , blob , git ):
100+ def test_dict (self , git , blob ):
101101 git .return_value = fixture ('ls_tree_a' )
102102 blob .return_value = 1
103103
@@ -111,7 +111,7 @@ def test_dict(self, blob, git):
111111
112112 @patch_object (Blob , 'size' )
113113 @patch_object (Git , '_call_process' )
114- def test_dict_with_zero_length_file (self , blob , git ):
114+ def test_dict_with_zero_length_file (self , git , blob ):
115115 git .return_value = fixture ('ls_tree_a' )
116116 blob .return_value = 0
117117
0 commit comments