@@ -72,22 +72,22 @@ def test_path_params_create(self, client: Intercom) -> None:
72
72
@parametrize
73
73
def test_method_list (self , client : Intercom ) -> None :
74
74
company = client .contacts .companies .list (
75
- contact_id = "contact_id " ,
75
+ contact_id = "63a07ddf05a32042dffac965 " ,
76
76
)
77
77
assert_matches_type (ContactAttachedCompanies , company , path = ["response" ])
78
78
79
79
@parametrize
80
80
def test_method_list_with_all_params (self , client : Intercom ) -> None :
81
81
company = client .contacts .companies .list (
82
- contact_id = "contact_id " ,
82
+ contact_id = "63a07ddf05a32042dffac965 " ,
83
83
intercom_version = "2.11" ,
84
84
)
85
85
assert_matches_type (ContactAttachedCompanies , company , path = ["response" ])
86
86
87
87
@parametrize
88
88
def test_raw_response_list (self , client : Intercom ) -> None :
89
89
response = client .contacts .companies .with_raw_response .list (
90
- contact_id = "contact_id " ,
90
+ contact_id = "63a07ddf05a32042dffac965 " ,
91
91
)
92
92
93
93
assert response .is_closed is True
@@ -98,7 +98,7 @@ def test_raw_response_list(self, client: Intercom) -> None:
98
98
@parametrize
99
99
def test_streaming_response_list (self , client : Intercom ) -> None :
100
100
with client .contacts .companies .with_streaming_response .list (
101
- contact_id = "contact_id " ,
101
+ contact_id = "63a07ddf05a32042dffac965 " ,
102
102
) as response :
103
103
assert not response .is_closed
104
104
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -230,22 +230,22 @@ async def test_path_params_create(self, async_client: AsyncIntercom) -> None:
230
230
@parametrize
231
231
async def test_method_list (self , async_client : AsyncIntercom ) -> None :
232
232
company = await async_client .contacts .companies .list (
233
- contact_id = "contact_id " ,
233
+ contact_id = "63a07ddf05a32042dffac965 " ,
234
234
)
235
235
assert_matches_type (ContactAttachedCompanies , company , path = ["response" ])
236
236
237
237
@parametrize
238
238
async def test_method_list_with_all_params (self , async_client : AsyncIntercom ) -> None :
239
239
company = await async_client .contacts .companies .list (
240
- contact_id = "contact_id " ,
240
+ contact_id = "63a07ddf05a32042dffac965 " ,
241
241
intercom_version = "2.11" ,
242
242
)
243
243
assert_matches_type (ContactAttachedCompanies , company , path = ["response" ])
244
244
245
245
@parametrize
246
246
async def test_raw_response_list (self , async_client : AsyncIntercom ) -> None :
247
247
response = await async_client .contacts .companies .with_raw_response .list (
248
- contact_id = "contact_id " ,
248
+ contact_id = "63a07ddf05a32042dffac965 " ,
249
249
)
250
250
251
251
assert response .is_closed is True
@@ -256,7 +256,7 @@ async def test_raw_response_list(self, async_client: AsyncIntercom) -> None:
256
256
@parametrize
257
257
async def test_streaming_response_list (self , async_client : AsyncIntercom ) -> None :
258
258
async with async_client .contacts .companies .with_streaming_response .list (
259
- contact_id = "contact_id " ,
259
+ contact_id = "63a07ddf05a32042dffac965 " ,
260
260
) as response :
261
261
assert not response .is_closed
262
262
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
0 commit comments