@@ -329,15 +329,15 @@ def test_streaming_response_get_current_user(self, client: Openint) -> None:
329329 @parametrize
330330 def test_method_get_message_template (self , client : Openint ) -> None :
331331 client_ = client .get_message_template (
332- customer_id = "customerId " ,
332+ customer_id = "customer_id " ,
333333 )
334334 assert_matches_type (GetMessageTemplateResponse , client_ , path = ["response" ])
335335
336336 @pytest .mark .skip ()
337337 @parametrize
338338 def test_method_get_message_template_with_all_params (self , client : Openint ) -> None :
339339 client_ = client .get_message_template (
340- customer_id = "customerId " ,
340+ customer_id = "customer_id " ,
341341 language = "javascript" ,
342342 use_environment_variables = True ,
343343 )
@@ -347,7 +347,7 @@ def test_method_get_message_template_with_all_params(self, client: Openint) -> N
347347 @parametrize
348348 def test_raw_response_get_message_template (self , client : Openint ) -> None :
349349 response = client .with_raw_response .get_message_template (
350- customer_id = "customerId " ,
350+ customer_id = "customer_id " ,
351351 )
352352
353353 assert response .is_closed is True
@@ -359,7 +359,7 @@ def test_raw_response_get_message_template(self, client: Openint) -> None:
359359 @parametrize
360360 def test_streaming_response_get_message_template (self , client : Openint ) -> None :
361361 with client .with_streaming_response .get_message_template (
362- customer_id = "customerId " ,
362+ customer_id = "customer_id " ,
363363 ) as response :
364364 assert not response .is_closed
365365 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -795,15 +795,15 @@ async def test_streaming_response_get_current_user(self, async_client: AsyncOpen
795795 @parametrize
796796 async def test_method_get_message_template (self , async_client : AsyncOpenint ) -> None :
797797 client = await async_client .get_message_template (
798- customer_id = "customerId " ,
798+ customer_id = "customer_id " ,
799799 )
800800 assert_matches_type (GetMessageTemplateResponse , client , path = ["response" ])
801801
802802 @pytest .mark .skip ()
803803 @parametrize
804804 async def test_method_get_message_template_with_all_params (self , async_client : AsyncOpenint ) -> None :
805805 client = await async_client .get_message_template (
806- customer_id = "customerId " ,
806+ customer_id = "customer_id " ,
807807 language = "javascript" ,
808808 use_environment_variables = True ,
809809 )
@@ -813,7 +813,7 @@ async def test_method_get_message_template_with_all_params(self, async_client: A
813813 @parametrize
814814 async def test_raw_response_get_message_template (self , async_client : AsyncOpenint ) -> None :
815815 response = await async_client .with_raw_response .get_message_template (
816- customer_id = "customerId " ,
816+ customer_id = "customer_id " ,
817817 )
818818
819819 assert response .is_closed is True
@@ -825,7 +825,7 @@ async def test_raw_response_get_message_template(self, async_client: AsyncOpenin
825825 @parametrize
826826 async def test_streaming_response_get_message_template (self , async_client : AsyncOpenint ) -> None :
827827 async with async_client .with_streaming_response .get_message_template (
828- customer_id = "customerId " ,
828+ customer_id = "customer_id " ,
829829 ) as response :
830830 assert not response .is_closed
831831 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
0 commit comments