@@ -103,6 +103,7 @@ class TestContentTypes:
103103 ],
104104 )
105105 def test_content_types (
106+ * ,
106107 vws_client : VWS ,
107108 image_file_failed_state : io .BytesIO ,
108109 content_type : str ,
@@ -129,6 +130,7 @@ def test_content_types(
129130
130131 @staticmethod
131132 def test_empty_content_type (
133+ * ,
132134 vws_client : VWS ,
133135 image_file_failed_state : io .BytesIO ,
134136 ) -> None :
@@ -174,6 +176,7 @@ class TestMissingData:
174176 argvalues = ["name" , "width" , "image" ],
175177 )
176178 def test_missing_data (
179+ * ,
177180 vws_client : VWS ,
178181 image_file_failed_state : io .BytesIO ,
179182 data_to_remove : str ,
@@ -212,6 +215,7 @@ class TestWidth:
212215 ids = ["Negative" , "Wrong Type" , "None" , "Zero" ],
213216 )
214217 def test_width_invalid (
218+ * ,
215219 vws_client : VWS ,
216220 image_file_failed_state : io .BytesIO ,
217221 width : int | str | None ,
@@ -239,6 +243,7 @@ def test_width_invalid(
239243
240244 @staticmethod
241245 def test_width_valid (
246+ * ,
242247 vws_client : VWS ,
243248 image_file_failed_state : io .BytesIO ,
244249 ) -> None :
@@ -273,6 +278,7 @@ class TestTargetName:
273278 ids = ["Short name" , "Max char value" , "Long name" ],
274279 )
275280 def test_name_valid (
281+ * ,
276282 name : str ,
277283 image_file_failed_state : io .BytesIO ,
278284 vws_client : VWS ,
@@ -310,6 +316,7 @@ def test_name_valid(
310316 ],
311317 )
312318 def test_name_invalid (
319+ * ,
313320 name : str | int | None ,
314321 image_file_failed_state : io .BytesIO ,
315322 status_code : int ,
@@ -349,6 +356,7 @@ def test_name_invalid(
349356
350357 @staticmethod
351358 def test_existing_target_name (
359+ * ,
352360 image_file_failed_state : io .BytesIO ,
353361 vws_client : VWS ,
354362 ) -> None :
@@ -378,6 +386,7 @@ def test_existing_target_name(
378386
379387 @staticmethod
380388 def test_deleted_existing_target_name (
389+ * ,
381390 image_file_failed_state : io .BytesIO ,
382391 vws_client : VWS ,
383392 ) -> None :
@@ -411,6 +420,7 @@ class TestImage:
411420
412421 @staticmethod
413422 def test_image_valid (
423+ * ,
414424 vws_client : VWS ,
415425 image_files_failed_state : io .BytesIO ,
416426 ) -> None :
@@ -428,6 +438,7 @@ def test_image_valid(
428438
429439 @staticmethod
430440 def test_bad_image_format_or_color_space (
441+ * ,
431442 bad_image_file : io .BytesIO ,
432443 vws_client : VWS ,
433444 ) -> None :
@@ -454,6 +465,7 @@ def test_bad_image_format_or_color_space(
454465
455466 @staticmethod
456467 def test_corrupted (
468+ * ,
457469 corrupted_image_file : io .BytesIO ,
458470 vws_client : VWS ,
459471 ) -> None :
@@ -543,6 +555,7 @@ def test_image_file_size_too_large(vws_client: VWS) -> None:
543555
544556 @staticmethod
545557 def test_not_base64_encoded_processable (
558+ * ,
546559 vws_client : VWS ,
547560 not_base64_encoded_processable : str ,
548561 ) -> None :
@@ -570,6 +583,7 @@ def test_not_base64_encoded_processable(
570583
571584 @staticmethod
572585 def test_not_base64_encoded_not_processable (
586+ * ,
573587 vws_client : VWS ,
574588 not_base64_encoded_not_processable : str ,
575589 ) -> None :
@@ -622,6 +636,7 @@ def test_not_image(vws_client: VWS) -> None:
622636 argvalues = [1 , None ],
623637 )
624638 def test_invalid_type (
639+ * ,
625640 invalid_type_image : int | None ,
626641 vws_client : VWS ,
627642 ) -> None :
@@ -681,6 +696,7 @@ def test_valid(
681696
682697 @staticmethod
683698 def test_invalid (
699+ * ,
684700 image_file_failed_state : io .BytesIO ,
685701 vws_client : VWS ,
686702 ) -> None :
@@ -717,6 +733,7 @@ def test_invalid(
717733
718734 @staticmethod
719735 def test_not_set (
736+ * ,
720737 vws_client : VWS ,
721738 image_file_failed_state : io .BytesIO ,
722739 ) -> None :
@@ -740,6 +757,7 @@ def test_not_set(
740757
741758 @staticmethod
742759 def test_set_to_none (
760+ * ,
743761 vws_client : VWS ,
744762 image_file_failed_state : io .BytesIO ,
745763 ) -> None :
@@ -773,6 +791,7 @@ class TestUnexpectedData:
773791
774792 @staticmethod
775793 def test_invalid_extra_data (
794+ * ,
776795 vws_client : VWS ,
777796 image_file_failed_state : io .BytesIO ,
778797 ) -> None :
@@ -816,6 +835,7 @@ class TestApplicationMetadata:
816835 ids = ["Short" , "Max length" ],
817836 )
818837 def test_base64_encoded (
838+ * ,
819839 image_file_failed_state : io .BytesIO ,
820840 metadata : bytes ,
821841 vws_client : VWS ,
@@ -835,6 +855,7 @@ def test_base64_encoded(
835855
836856 @staticmethod
837857 def test_null (
858+ * ,
838859 vws_client : VWS ,
839860 image_file_failed_state : io .BytesIO ,
840861 ) -> None :
@@ -860,6 +881,7 @@ def test_null(
860881
861882 @staticmethod
862883 def test_invalid_type (
884+ * ,
863885 vws_client : VWS ,
864886 image_file_failed_state : io .BytesIO ,
865887 ) -> None :
@@ -890,6 +912,7 @@ def test_invalid_type(
890912
891913 @staticmethod
892914 def test_not_base64_encoded_processable (
915+ * ,
893916 high_quality_image : io .BytesIO ,
894917 not_base64_encoded_processable : str ,
895918 vws_client : VWS ,
@@ -909,6 +932,7 @@ def test_not_base64_encoded_processable(
909932
910933 @staticmethod
911934 def test_not_base64_encoded_not_processable (
935+ * ,
912936 high_quality_image : io .BytesIO ,
913937 not_base64_encoded_not_processable : str ,
914938 vws_client : VWS ,
@@ -935,6 +959,7 @@ def test_not_base64_encoded_not_processable(
935959
936960 @staticmethod
937961 def test_metadata_too_large (
962+ * ,
938963 image_file_failed_state : io .BytesIO ,
939964 vws_client : VWS ,
940965 ) -> None :
@@ -970,6 +995,7 @@ class TestInactiveProject:
970995
971996 @staticmethod
972997 def test_inactive_project (
998+ * ,
973999 image_file_failed_state : io .BytesIO ,
9741000 inactive_vws_client : VWS ,
9751001 ) -> None :
0 commit comments