@@ -24,15 +24,15 @@ class TestObjects:
2424 @parametrize
2525 def test_method_create (self , client : Runloop ) -> None :
2626 object_ = client .objects .create (
27- content_type = "UNSPECIFIED " ,
27+ content_type = "unspecified " ,
2828 name = "name" ,
2929 )
3030 assert_matches_type (ObjectView , object_ , path = ["response" ])
3131
3232 @parametrize
3333 def test_method_create_with_all_params (self , client : Runloop ) -> None :
3434 object_ = client .objects .create (
35- content_type = "UNSPECIFIED " ,
35+ content_type = "unspecified " ,
3636 name = "name" ,
3737 metadata = {"foo" : "string" },
3838 )
@@ -41,7 +41,7 @@ def test_method_create_with_all_params(self, client: Runloop) -> None:
4141 @parametrize
4242 def test_raw_response_create (self , client : Runloop ) -> None :
4343 response = client .objects .with_raw_response .create (
44- content_type = "UNSPECIFIED " ,
44+ content_type = "unspecified " ,
4545 name = "name" ,
4646 )
4747
@@ -53,7 +53,7 @@ def test_raw_response_create(self, client: Runloop) -> None:
5353 @parametrize
5454 def test_streaming_response_create (self , client : Runloop ) -> None :
5555 with client .objects .with_streaming_response .create (
56- content_type = "UNSPECIFIED " ,
56+ content_type = "unspecified " ,
5757 name = "name" ,
5858 ) as response :
5959 assert not response .is_closed
@@ -307,15 +307,15 @@ class TestAsyncObjects:
307307 @parametrize
308308 async def test_method_create (self , async_client : AsyncRunloop ) -> None :
309309 object_ = await async_client .objects .create (
310- content_type = "UNSPECIFIED " ,
310+ content_type = "unspecified " ,
311311 name = "name" ,
312312 )
313313 assert_matches_type (ObjectView , object_ , path = ["response" ])
314314
315315 @parametrize
316316 async def test_method_create_with_all_params (self , async_client : AsyncRunloop ) -> None :
317317 object_ = await async_client .objects .create (
318- content_type = "UNSPECIFIED " ,
318+ content_type = "unspecified " ,
319319 name = "name" ,
320320 metadata = {"foo" : "string" },
321321 )
@@ -324,7 +324,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncRunloop) -
324324 @parametrize
325325 async def test_raw_response_create (self , async_client : AsyncRunloop ) -> None :
326326 response = await async_client .objects .with_raw_response .create (
327- content_type = "UNSPECIFIED " ,
327+ content_type = "unspecified " ,
328328 name = "name" ,
329329 )
330330
@@ -336,7 +336,7 @@ async def test_raw_response_create(self, async_client: AsyncRunloop) -> None:
336336 @parametrize
337337 async def test_streaming_response_create (self , async_client : AsyncRunloop ) -> None :
338338 async with async_client .objects .with_streaming_response .create (
339- content_type = "UNSPECIFIED " ,
339+ content_type = "unspecified " ,
340340 name = "name" ,
341341 ) as response :
342342 assert not response .is_closed
0 commit comments