File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
libraries/botbuilder-core Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ async def create_conversation(
351
351
if reference .conversation and reference .conversation .tenant_id :
352
352
# Putting tenant_id in channel_data is a temporary while we wait for the Teams API to be updated
353
353
parameters .channel_data = {
354
- "tenant" : {"id " : reference .conversation .tenant_id }
354
+ "tenant" : {"tenantId " : reference .conversation .tenant_id }
355
355
}
356
356
357
357
# Permanent solution is to put tenant_id in parameters.tenant_id
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ async def aux_func_assert_valid_conversation(context):
303
303
"request has invalid tenant_id on conversation" ,
304
304
)
305
305
self .assertEqual (
306
- context .activity .channel_data ["tenant" ]["id " ],
306
+ context .activity .channel_data ["tenant" ]["tenantId " ],
307
307
tenant_id ,
308
308
"request has invalid tenant_id in channel_data" ,
309
309
)
You can’t perform that action at this time.
0 commit comments