@@ -56,7 +56,7 @@ def test_binary_gif(
5656 _content_type : Optional [StrictStr ] = None ,
5757 _headers : Optional [Dict [StrictStr , Any ]] = None ,
5858 _host_index : Annotated [StrictInt , Field (ge = 0 , le = 0 )] = 0 ,
59- ) -> bytearray :
59+ ) -> bytes :
6060 """Test binary (gif) response body
6161
6262 Test binary (gif) response body
@@ -91,7 +91,7 @@ def test_binary_gif(
9191 )
9292
9393 _response_types_map : Dict [str , Optional [str ]] = {
94- '200' : "bytearray " ,
94+ '200' : "bytes " ,
9595 }
9696 response_data = self .api_client .call_api (
9797 * _param ,
@@ -119,7 +119,7 @@ def test_binary_gif_with_http_info(
119119 _content_type : Optional [StrictStr ] = None ,
120120 _headers : Optional [Dict [StrictStr , Any ]] = None ,
121121 _host_index : Annotated [StrictInt , Field (ge = 0 , le = 0 )] = 0 ,
122- ) -> ApiResponse [bytearray ]:
122+ ) -> ApiResponse [bytes ]:
123123 """Test binary (gif) response body
124124
125125 Test binary (gif) response body
@@ -154,7 +154,7 @@ def test_binary_gif_with_http_info(
154154 )
155155
156156 _response_types_map : Dict [str , Optional [str ]] = {
157- '200' : "bytearray " ,
157+ '200' : "bytes " ,
158158 }
159159 response_data = self .api_client .call_api (
160160 * _param ,
@@ -217,7 +217,7 @@ def test_binary_gif_without_preload_content(
217217 )
218218
219219 _response_types_map : Dict [str , Optional [str ]] = {
220- '200' : "bytearray " ,
220+ '200' : "bytes " ,
221221 }
222222 response_data = self .api_client .call_api (
223223 * _param ,
@@ -308,7 +308,7 @@ def test_body_application_octetstream_binary(
308308 Test body parameter(s)
309309
310310 :param body:
311- :type body: bytearray
311+ :type body: bytes
312312 :param _request_timeout: timeout setting for this request. If one
313313 number provided, it will be total request
314314 timeout. It can also be a pair (tuple) of
@@ -375,7 +375,7 @@ def test_body_application_octetstream_binary_with_http_info(
375375 Test body parameter(s)
376376
377377 :param body:
378- :type body: bytearray
378+ :type body: bytes
379379 :param _request_timeout: timeout setting for this request. If one
380380 number provided, it will be total request
381381 timeout. It can also be a pair (tuple) of
@@ -442,7 +442,7 @@ def test_body_application_octetstream_binary_without_preload_content(
442442 Test body parameter(s)
443443
444444 :param body:
445- :type body: bytearray
445+ :type body: bytes
446446 :param _request_timeout: timeout setting for this request. If one
447447 number provided, it will be total request
448448 timeout. It can also be a pair (tuple) of
@@ -589,7 +589,7 @@ def test_body_multipart_formdata_array_of_binary(
589589 Test array of binary in multipart mime
590590
591591 :param files: (required)
592- :type files: List[bytearray ]
592+ :type files: List[bytes ]
593593 :param _request_timeout: timeout setting for this request. If one
594594 number provided, it will be total request
595595 timeout. It can also be a pair (tuple) of
@@ -656,7 +656,7 @@ def test_body_multipart_formdata_array_of_binary_with_http_info(
656656 Test array of binary in multipart mime
657657
658658 :param files: (required)
659- :type files: List[bytearray ]
659+ :type files: List[bytes ]
660660 :param _request_timeout: timeout setting for this request. If one
661661 number provided, it will be total request
662662 timeout. It can also be a pair (tuple) of
@@ -723,7 +723,7 @@ def test_body_multipart_formdata_array_of_binary_without_preload_content(
723723 Test array of binary in multipart mime
724724
725725 :param files: (required)
726- :type files: List[bytearray ]
726+ :type files: List[bytes ]
727727 :param _request_timeout: timeout setting for this request. If one
728728 number provided, it will be total request
729729 timeout. It can also be a pair (tuple) of
@@ -863,7 +863,7 @@ def test_body_multipart_formdata_single_binary(
863863 Test single binary in multipart mime
864864
865865 :param my_file:
866- :type my_file: bytearray
866+ :type my_file: bytes
867867 :param _request_timeout: timeout setting for this request. If one
868868 number provided, it will be total request
869869 timeout. It can also be a pair (tuple) of
@@ -930,7 +930,7 @@ def test_body_multipart_formdata_single_binary_with_http_info(
930930 Test single binary in multipart mime
931931
932932 :param my_file:
933- :type my_file: bytearray
933+ :type my_file: bytes
934934 :param _request_timeout: timeout setting for this request. If one
935935 number provided, it will be total request
936936 timeout. It can also be a pair (tuple) of
@@ -997,7 +997,7 @@ def test_body_multipart_formdata_single_binary_without_preload_content(
997997 Test single binary in multipart mime
998998
999999 :param my_file:
1000- :type my_file: bytearray
1000+ :type my_file: bytes
10011001 :param _request_timeout: timeout setting for this request. If one
10021002 number provided, it will be total request
10031003 timeout. It can also be a pair (tuple) of
0 commit comments