1919class TestAudit :
2020 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
2121
22- @pytest .mark .skip (reason = "TODO: investigate broken test" )
22+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
2323 @parametrize
2424 def test_method_list (self , client : Cloudflare ) -> None :
2525 audit = client .accounts .logs .audit .list (
@@ -29,7 +29,7 @@ def test_method_list(self, client: Cloudflare) -> None:
2929 )
3030 assert_matches_type (SyncCursorLimitPagination [AuditListResponse ], audit , path = ["response" ])
3131
32- @pytest .mark .skip (reason = "TODO: investigate broken test" )
32+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
3333 @parametrize
3434 def test_method_list_with_all_params (self , client : Cloudflare ) -> None :
3535 audit = client .accounts .logs .audit .list (
@@ -63,7 +63,7 @@ def test_method_list_with_all_params(self, client: Cloudflare) -> None:
6363 )
6464 assert_matches_type (SyncCursorLimitPagination [AuditListResponse ], audit , path = ["response" ])
6565
66- @pytest .mark .skip (reason = "TODO: investigate broken test" )
66+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
6767 @parametrize
6868 def test_raw_response_list (self , client : Cloudflare ) -> None :
6969 response = client .accounts .logs .audit .with_raw_response .list (
@@ -77,7 +77,7 @@ def test_raw_response_list(self, client: Cloudflare) -> None:
7777 audit = response .parse ()
7878 assert_matches_type (SyncCursorLimitPagination [AuditListResponse ], audit , path = ["response" ])
7979
80- @pytest .mark .skip (reason = "TODO: investigate broken test" )
80+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
8181 @parametrize
8282 def test_streaming_response_list (self , client : Cloudflare ) -> None :
8383 with client .accounts .logs .audit .with_streaming_response .list (
@@ -93,7 +93,7 @@ def test_streaming_response_list(self, client: Cloudflare) -> None:
9393
9494 assert cast (Any , response .is_closed ) is True
9595
96- @pytest .mark .skip (reason = "TODO: investigate broken test" )
96+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
9797 @parametrize
9898 def test_path_params_list (self , client : Cloudflare ) -> None :
9999 with pytest .raises (ValueError , match = r"Expected a non-empty value for `account_id` but received ''" ):
@@ -107,7 +107,7 @@ def test_path_params_list(self, client: Cloudflare) -> None:
107107class TestAsyncAudit :
108108 parametrize = pytest .mark .parametrize ("async_client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
109109
110- @pytest .mark .skip (reason = "TODO: investigate broken test" )
110+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
111111 @parametrize
112112 async def test_method_list (self , async_client : AsyncCloudflare ) -> None :
113113 audit = await async_client .accounts .logs .audit .list (
@@ -117,7 +117,7 @@ async def test_method_list(self, async_client: AsyncCloudflare) -> None:
117117 )
118118 assert_matches_type (AsyncCursorLimitPagination [AuditListResponse ], audit , path = ["response" ])
119119
120- @pytest .mark .skip (reason = "TODO: investigate broken test" )
120+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
121121 @parametrize
122122 async def test_method_list_with_all_params (self , async_client : AsyncCloudflare ) -> None :
123123 audit = await async_client .accounts .logs .audit .list (
@@ -151,7 +151,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncCloudflare)
151151 )
152152 assert_matches_type (AsyncCursorLimitPagination [AuditListResponse ], audit , path = ["response" ])
153153
154- @pytest .mark .skip (reason = "TODO: investigate broken test" )
154+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
155155 @parametrize
156156 async def test_raw_response_list (self , async_client : AsyncCloudflare ) -> None :
157157 response = await async_client .accounts .logs .audit .with_raw_response .list (
@@ -165,7 +165,7 @@ async def test_raw_response_list(self, async_client: AsyncCloudflare) -> None:
165165 audit = await response .parse ()
166166 assert_matches_type (AsyncCursorLimitPagination [AuditListResponse ], audit , path = ["response" ])
167167
168- @pytest .mark .skip (reason = "TODO: investigate broken test" )
168+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
169169 @parametrize
170170 async def test_streaming_response_list (self , async_client : AsyncCloudflare ) -> None :
171171 async with async_client .accounts .logs .audit .with_streaming_response .list (
@@ -181,7 +181,7 @@ async def test_streaming_response_list(self, async_client: AsyncCloudflare) -> N
181181
182182 assert cast (Any , response .is_closed ) is True
183183
184- @pytest .mark .skip (reason = "TODO: investigate broken test" )
184+ @pytest .mark .skip (reason = "TODO:investigate broken test" )
185185 @parametrize
186186 async def test_path_params_list (self , async_client : AsyncCloudflare ) -> None :
187187 with pytest .raises (ValueError , match = r"Expected a non-empty value for `account_id` but received ''" ):
0 commit comments