@@ -56,7 +56,7 @@ def test_content_from_string_invalid_type_should_raise(self):
56
56
57
57
@patch_object (Blob , 'size' )
58
58
@patch_object (Git , '_call_process' )
59
- def test_slash (self , blob , git ):
59
+ def test_slash (self , git , blob ):
60
60
git .return_value = fixture ('ls_tree_a' )
61
61
blob .return_value = 1
62
62
@@ -70,7 +70,7 @@ def test_slash(self, blob, git):
70
70
71
71
@patch_object (Blob , 'size' )
72
72
@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 ):
74
74
git .return_value = fixture ('ls_tree_a' )
75
75
blob .return_value = 0
76
76
@@ -97,7 +97,7 @@ def test_slash_with_commits(self, git):
97
97
98
98
@patch_object (Blob , 'size' )
99
99
@patch_object (Git , '_call_process' )
100
- def test_dict (self , blob , git ):
100
+ def test_dict (self , git , blob ):
101
101
git .return_value = fixture ('ls_tree_a' )
102
102
blob .return_value = 1
103
103
@@ -111,7 +111,7 @@ def test_dict(self, blob, git):
111
111
112
112
@patch_object (Blob , 'size' )
113
113
@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 ):
115
115
git .return_value = fixture ('ls_tree_a' )
116
116
blob .return_value = 0
117
117
0 commit comments