File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5555# --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
5656# === END CI TEST ARGUMENTS ===
5757
58+ import asyncio
5859import enum
5960import logging
60- from time import sleep
6161from typing import Optional
6262
6363from mdns_discovery .mdns_discovery import MdnsDiscovery , MdnsServiceType
@@ -680,14 +680,14 @@ async def close_commissioning_window(self) -> None:
680680 endpoint = 0 ,
681681 payload = revoke_cmd ,
682682 timedRequestTimeoutMs = 6000 )
683- sleep (1 ) # Give some time for failsafe cleanup scheduling
683+ await asyncio . sleep (1 ) # Give some time for failsafe cleanup scheduling
684684
685685 def desc_TC_TC_SC_4_1 (self ) -> str :
686686 return "[TC-SC-4.1] Commissionable Node Discovery with DUT as Commissionee"
687687
688688 @async_test_body
689689 async def test_TC_SC_4_1 (self ):
690- self .endpoint = self .get_endpoint (default = 1 )
690+ self .endpoint = self .get_endpoint ()
691691 self .supports_icd = False
692692 self .supports_lit = False
693693 self .setup_code_type = None
You can’t perform that action at this time.
0 commit comments