Skip to content

Commit

Permalink
changing spelling of isAlive>is_alive (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman authored and william-silversmith committed Dec 4, 2019
1 parent 5d3aacf commit 9e7195e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_threadedqueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_threads_die():
with ThreadedQueue(n_threads=40) as tq:
threads = tq._threads

assert not any(map(lambda t: t.isAlive(), threads))
assert not any(map(lambda t: t.is_alive(), threads))

def test_thread_exceptions():

Expand Down

0 comments on commit 9e7195e

Please sign in to comment.