We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74ec8de commit ea84422Copy full SHA for ea84422
tests/tests_asyncio/test_browser.py
@@ -146,7 +146,7 @@ def inject_fixtures(self, caplog):
146
@staticmethod
147
def kill_chrome():
148
for proc in psutil.process_iter(["pid", "name"]):
149
- started_time = proc.create_time() # seconds since since January 1, 1970 UTC
+ started_time = proc.create_time() # seconds since January 1, 1970 UTC
150
# only consider processes started in the last 10 seconds
151
if not started_time >= time.time() - 10:
152
continue
0 commit comments