Skip to content

Commit

Permalink
s/isAlive/is_alive/
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalresistor committed Aug 14, 2024
1 parent 5ae9b5d commit 411df96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ def _serve(app):
log.debug("shutting server down")
server.shutdown()
worker.join(1)
if worker.isAlive():
log.warning('worker is hanged')
if worker.is_alive():
log.warning("worker is hanged")
else:
log.debug("server stopped")

Expand Down

0 comments on commit 411df96

Please sign in to comment.