@@ -37,7 +37,7 @@ def test_uploading_index(self):
3737 test_zip = os .path .join (INPUTS , "commons-client-4.5.6.zip" )
3838 product = "commons-client-4.5.6"
3939 handle_maven_uploading (
40- test_zip , product ,
40+ [ test_zip ] , product ,
4141 targets = [('' , TEST_BUCKET , '' , '' )],
4242 dir_ = self .tempdir
4343 )
@@ -79,15 +79,15 @@ def test_overlap_upload_index(self):
7979 test_zip = os .path .join (INPUTS , "commons-client-4.5.6.zip" )
8080 product_456 = "commons-client-4.5.6"
8181 handle_maven_uploading (
82- test_zip , product_456 ,
82+ [ test_zip ] , product_456 ,
8383 targets = [('' , TEST_BUCKET , '' , '' )],
8484 dir_ = self .tempdir
8585 )
8686
8787 test_zip = os .path .join (INPUTS , "commons-client-4.5.9.zip" )
8888 product_459 = "commons-client-4.5.9"
8989 handle_maven_uploading (
90- test_zip , product_459 ,
90+ [ test_zip ] , product_459 ,
9191 targets = [('' , TEST_BUCKET , '' , '' )],
9292 dir_ = self .tempdir
9393 )
@@ -130,7 +130,7 @@ def test_re_index(self):
130130 test_zip = os .path .join (INPUTS , "commons-client-4.5.6.zip" )
131131 product = "commons-client-4.5.6"
132132 handle_maven_uploading (
133- test_zip , product ,
133+ [ test_zip ] , product ,
134134 targets = [('' , TEST_BUCKET , '' , '' )],
135135 dir_ = self .tempdir
136136 )
@@ -221,7 +221,7 @@ def __test_upload_index_with_prefix(self, prefix: str):
221221 test_zip = os .path .join (INPUTS , "commons-client-4.5.6.zip" )
222222 product = "commons-client-4.5.6"
223223 handle_maven_uploading (
224- test_zip , product ,
224+ [ test_zip ] , product ,
225225 targets = [('' , TEST_BUCKET , prefix , '' )],
226226 dir_ = self .tempdir
227227 )
@@ -403,15 +403,15 @@ def __prepare_content(self, prefix=None):
403403 test_zip = os .path .join (INPUTS , "commons-client-4.5.6.zip" )
404404 product_456 = "commons-client-4.5.6"
405405 handle_maven_uploading (
406- test_zip , product_456 ,
406+ [ test_zip ] , product_456 ,
407407 targets = [('' , TEST_BUCKET , prefix , '' )],
408408 dir_ = self .tempdir
409409 )
410410
411411 test_zip = os .path .join (INPUTS , "commons-client-4.5.9.zip" )
412412 product_459 = "commons-client-4.5.9"
413413 handle_maven_uploading (
414- test_zip , product_459 ,
414+ [ test_zip ] , product_459 ,
415415 targets = [('' , TEST_BUCKET , prefix , '' )],
416416 dir_ = self .tempdir
417417 )
0 commit comments