@@ -25,24 +25,24 @@ class TestBrowsers:
2525 @parametrize
2626 def test_method_create (self , client : Kernel ) -> None :
2727 browser = client .browsers .create (
28- invocation_id = "ckqwer3o20000jb9s7abcdef " ,
28+ invocation_id = "rr33xuugxj9h0bkf1rdt2bet " ,
2929 )
3030 assert_matches_type (BrowserCreateResponse , browser , path = ["response" ])
3131
3232 @pytest .mark .skip ()
3333 @parametrize
3434 def test_method_create_with_all_params (self , client : Kernel ) -> None :
3535 browser = client .browsers .create (
36- invocation_id = "ckqwer3o20000jb9s7abcdef " ,
37- persistence = {"id" : "my-shared -browser" },
36+ invocation_id = "rr33xuugxj9h0bkf1rdt2bet " ,
37+ persistence = {"id" : "my-awesome -browser-for-user-1234 " },
3838 )
3939 assert_matches_type (BrowserCreateResponse , browser , path = ["response" ])
4040
4141 @pytest .mark .skip ()
4242 @parametrize
4343 def test_raw_response_create (self , client : Kernel ) -> None :
4444 response = client .browsers .with_raw_response .create (
45- invocation_id = "ckqwer3o20000jb9s7abcdef " ,
45+ invocation_id = "rr33xuugxj9h0bkf1rdt2bet " ,
4646 )
4747
4848 assert response .is_closed is True
@@ -54,7 +54,7 @@ def test_raw_response_create(self, client: Kernel) -> None:
5454 @parametrize
5555 def test_streaming_response_create (self , client : Kernel ) -> None :
5656 with client .browsers .with_streaming_response .create (
57- invocation_id = "ckqwer3o20000jb9s7abcdef " ,
57+ invocation_id = "rr33xuugxj9h0bkf1rdt2bet " ,
5858 ) as response :
5959 assert not response .is_closed
6060 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -218,24 +218,24 @@ class TestAsyncBrowsers:
218218 @parametrize
219219 async def test_method_create (self , async_client : AsyncKernel ) -> None :
220220 browser = await async_client .browsers .create (
221- invocation_id = "ckqwer3o20000jb9s7abcdef " ,
221+ invocation_id = "rr33xuugxj9h0bkf1rdt2bet " ,
222222 )
223223 assert_matches_type (BrowserCreateResponse , browser , path = ["response" ])
224224
225225 @pytest .mark .skip ()
226226 @parametrize
227227 async def test_method_create_with_all_params (self , async_client : AsyncKernel ) -> None :
228228 browser = await async_client .browsers .create (
229- invocation_id = "ckqwer3o20000jb9s7abcdef " ,
230- persistence = {"id" : "my-shared -browser" },
229+ invocation_id = "rr33xuugxj9h0bkf1rdt2bet " ,
230+ persistence = {"id" : "my-awesome -browser-for-user-1234 " },
231231 )
232232 assert_matches_type (BrowserCreateResponse , browser , path = ["response" ])
233233
234234 @pytest .mark .skip ()
235235 @parametrize
236236 async def test_raw_response_create (self , async_client : AsyncKernel ) -> None :
237237 response = await async_client .browsers .with_raw_response .create (
238- invocation_id = "ckqwer3o20000jb9s7abcdef " ,
238+ invocation_id = "rr33xuugxj9h0bkf1rdt2bet " ,
239239 )
240240
241241 assert response .is_closed is True
@@ -247,7 +247,7 @@ async def test_raw_response_create(self, async_client: AsyncKernel) -> None:
247247 @parametrize
248248 async def test_streaming_response_create (self , async_client : AsyncKernel ) -> None :
249249 async with async_client .browsers .with_streaming_response .create (
250- invocation_id = "ckqwer3o20000jb9s7abcdef " ,
250+ invocation_id = "rr33xuugxj9h0bkf1rdt2bet " ,
251251 ) as response :
252252 assert not response .is_closed
253253 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
0 commit comments