test: Scale NetworkThread close timeout with timeout_factor

This commit is contained in:
MarcoFalke
2026-01-21 16:19:13 +01:00
parent 52096de212
commit fab055c907
2 changed files with 2 additions and 2 deletions

View File

@@ -743,7 +743,7 @@ class NetworkThread(threading.Thread):
"""Start the network thread."""
self.network_event_loop.run_forever()
def close(self, *, timeout=10):
def close(self, *, timeout):
"""Close the connections and network event loop."""
self.network_event_loop.call_soon_threadsafe(self.network_event_loop.stop)
wait_until_helper_internal(lambda: not self.network_event_loop.is_running(), timeout=timeout)