@@ -81,15 +81,14 @@ def test_streaming_response_retrieve(self, client: BrandDev) -> None:
8181 @pytest .mark .skip (reason = "Prism tests are disabled" )
8282 @parametrize
8383 def test_method_ai_products (self , client : BrandDev ) -> None :
84- brand = client .brand .ai_products (
85- domain = "domain" ,
86- )
84+ brand = client .brand .ai_products ()
8785 assert_matches_type (BrandAIProductsResponse , brand , path = ["response" ])
8886
8987 @pytest .mark .skip (reason = "Prism tests are disabled" )
9088 @parametrize
9189 def test_method_ai_products_with_all_params (self , client : BrandDev ) -> None :
9290 brand = client .brand .ai_products (
91+ direct_url = "https://example.com" ,
9392 domain = "domain" ,
9493 max_products = 1 ,
9594 timeout_ms = 1 ,
@@ -99,9 +98,7 @@ def test_method_ai_products_with_all_params(self, client: BrandDev) -> None:
9998 @pytest .mark .skip (reason = "Prism tests are disabled" )
10099 @parametrize
101100 def test_raw_response_ai_products (self , client : BrandDev ) -> None :
102- response = client .brand .with_raw_response .ai_products (
103- domain = "domain" ,
104- )
101+ response = client .brand .with_raw_response .ai_products ()
105102
106103 assert response .is_closed is True
107104 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -111,9 +108,7 @@ def test_raw_response_ai_products(self, client: BrandDev) -> None:
111108 @pytest .mark .skip (reason = "Prism tests are disabled" )
112109 @parametrize
113110 def test_streaming_response_ai_products (self , client : BrandDev ) -> None :
114- with client .brand .with_streaming_response .ai_products (
115- domain = "domain" ,
116- ) as response :
111+ with client .brand .with_streaming_response .ai_products () as response :
117112 assert not response .is_closed
118113 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
119114
@@ -803,15 +798,14 @@ async def test_streaming_response_retrieve(self, async_client: AsyncBrandDev) ->
803798 @pytest .mark .skip (reason = "Prism tests are disabled" )
804799 @parametrize
805800 async def test_method_ai_products (self , async_client : AsyncBrandDev ) -> None :
806- brand = await async_client .brand .ai_products (
807- domain = "domain" ,
808- )
801+ brand = await async_client .brand .ai_products ()
809802 assert_matches_type (BrandAIProductsResponse , brand , path = ["response" ])
810803
811804 @pytest .mark .skip (reason = "Prism tests are disabled" )
812805 @parametrize
813806 async def test_method_ai_products_with_all_params (self , async_client : AsyncBrandDev ) -> None :
814807 brand = await async_client .brand .ai_products (
808+ direct_url = "https://example.com" ,
815809 domain = "domain" ,
816810 max_products = 1 ,
817811 timeout_ms = 1 ,
@@ -821,9 +815,7 @@ async def test_method_ai_products_with_all_params(self, async_client: AsyncBrand
821815 @pytest .mark .skip (reason = "Prism tests are disabled" )
822816 @parametrize
823817 async def test_raw_response_ai_products (self , async_client : AsyncBrandDev ) -> None :
824- response = await async_client .brand .with_raw_response .ai_products (
825- domain = "domain" ,
826- )
818+ response = await async_client .brand .with_raw_response .ai_products ()
827819
828820 assert response .is_closed is True
829821 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -833,9 +825,7 @@ async def test_raw_response_ai_products(self, async_client: AsyncBrandDev) -> No
833825 @pytest .mark .skip (reason = "Prism tests are disabled" )
834826 @parametrize
835827 async def test_streaming_response_ai_products (self , async_client : AsyncBrandDev ) -> None :
836- async with async_client .brand .with_streaming_response .ai_products (
837- domain = "domain" ,
838- ) as response :
828+ async with async_client .brand .with_streaming_response .ai_products () as response :
839829 assert not response .is_closed
840830 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
841831
0 commit comments