test: use default value

This commit is contained in:
Zxilly 2024-09-20 17:31:47 +08:00
parent 275853593b
commit 202759c828
No known key found for this signature in database
GPG Key ID: 47AB1DEC841BC6A2

View File

@ -35,7 +35,7 @@ def start_server():
def start_ua2f(u: str):
p = subprocess.Popen([u], stdout=subprocess.STDOUT, stderr=subprocess.STDOUT)
p = subprocess.Popen([u])
atexit.register(lambda: p.kill())