@@ -68,7 +68,6 @@ def test_streaming_response_add(self, client: Supermemory) -> None:
6868 def test_method_profile (self , client : Supermemory ) -> None :
6969 client_ = client .profile (
7070 container_tag = "containerTag" ,
71- threshold = 0 ,
7271 )
7372 assert_matches_type (ProfileResponse , client_ , path = ["response" ])
7473
@@ -77,8 +76,8 @@ def test_method_profile(self, client: Supermemory) -> None:
7776 def test_method_profile_with_all_params (self , client : Supermemory ) -> None :
7877 client_ = client .profile (
7978 container_tag = "containerTag" ,
80- threshold = 0 ,
8179 q = "q" ,
80+ threshold = 0 ,
8281 )
8382 assert_matches_type (ProfileResponse , client_ , path = ["response" ])
8483
@@ -87,7 +86,6 @@ def test_method_profile_with_all_params(self, client: Supermemory) -> None:
8786 def test_raw_response_profile (self , client : Supermemory ) -> None :
8887 response = client .with_raw_response .profile (
8988 container_tag = "containerTag" ,
90- threshold = 0 ,
9189 )
9290
9391 assert response .is_closed is True
@@ -100,7 +98,6 @@ def test_raw_response_profile(self, client: Supermemory) -> None:
10098 def test_streaming_response_profile (self , client : Supermemory ) -> None :
10199 with client .with_streaming_response .profile (
102100 container_tag = "containerTag" ,
103- threshold = 0 ,
104101 ) as response :
105102 assert not response .is_closed
106103 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -167,7 +164,6 @@ async def test_streaming_response_add(self, async_client: AsyncSupermemory) -> N
167164 async def test_method_profile (self , async_client : AsyncSupermemory ) -> None :
168165 client = await async_client .profile (
169166 container_tag = "containerTag" ,
170- threshold = 0 ,
171167 )
172168 assert_matches_type (ProfileResponse , client , path = ["response" ])
173169
@@ -176,8 +172,8 @@ async def test_method_profile(self, async_client: AsyncSupermemory) -> None:
176172 async def test_method_profile_with_all_params (self , async_client : AsyncSupermemory ) -> None :
177173 client = await async_client .profile (
178174 container_tag = "containerTag" ,
179- threshold = 0 ,
180175 q = "q" ,
176+ threshold = 0 ,
181177 )
182178 assert_matches_type (ProfileResponse , client , path = ["response" ])
183179
@@ -186,7 +182,6 @@ async def test_method_profile_with_all_params(self, async_client: AsyncSupermemo
186182 async def test_raw_response_profile (self , async_client : AsyncSupermemory ) -> None :
187183 response = await async_client .with_raw_response .profile (
188184 container_tag = "containerTag" ,
189- threshold = 0 ,
190185 )
191186
192187 assert response .is_closed is True
@@ -199,7 +194,6 @@ async def test_raw_response_profile(self, async_client: AsyncSupermemory) -> Non
199194 async def test_streaming_response_profile (self , async_client : AsyncSupermemory ) -> None :
200195 async with async_client .with_streaming_response .profile (
201196 container_tag = "containerTag" ,
202- threshold = 0 ,
203197 ) as response :
204198 assert not response .is_closed
205199 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
0 commit comments