@@ -173,7 +173,7 @@ async def test_TC_MCORE_FS_1_5(self):
173
173
nodeid = self .dut_node_id ,
174
174
attributes = parts_list_subscription_contents ,
175
175
reportInterval = (min_report_interval_sec , max_report_interval_sec ),
176
- keepSubscriptions = False
176
+ keepSubscriptions = True
177
177
)
178
178
179
179
parts_list_queue = queue .Queue ()
@@ -249,14 +249,15 @@ async def test_TC_MCORE_FS_1_5(self):
249
249
await self .default_controller .CommissionOnNetwork (nodeId = self .th_server_local_nodeid , setupPinCode = passcode , filterType = ChipDeviceCtrl .DiscoveryFilterType .LONG_DISCRIMINATOR , filter = discriminator )
250
250
251
251
self .step (6 )
252
+ max_report_interval_sec = 10
252
253
cadmin_subscription_contents = [
253
254
(newly_added_endpoint , Clusters .AdministratorCommissioning )
254
255
]
255
256
self ._cadmin_subscription = await self .default_controller .ReadAttribute (
256
257
nodeid = self .dut_node_id ,
257
258
attributes = cadmin_subscription_contents ,
258
259
reportInterval = (min_report_interval_sec , max_report_interval_sec ),
259
- keepSubscriptions = False
260
+ keepSubscriptions = True
260
261
)
261
262
262
263
cadmin_queue = queue .Queue ()
@@ -282,7 +283,7 @@ async def test_TC_MCORE_FS_1_5(self):
282
283
current_fabric_index , "AdminFabricIndex is unexpected" )
283
284
284
285
self .step (10 )
285
- report_waiting_timeout_delay_sec = 10
286
+ report_waiting_timeout_delay_sec = max_report_interval_sec + 1
286
287
logging .info ("Waiting for update to AdministratorCommissioning attributes." )
287
288
start_time = time .time ()
288
289
elapsed = 0
0 commit comments