Skip to content

Commit

Permalink
remove unnecessary prints
Browse files Browse the repository at this point in the history
  • Loading branch information
DE0CH committed Jan 9, 2023
1 parent 9eb2923 commit fb16f87
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def test_no_hang1():
t2 = Timer(21, sigkill_process, args=(p,))
t1.start()
t2.start()
print("jfjfjfj")
for i in range(22):
sleep(1)
if not p.is_alive():
Expand All @@ -67,7 +66,6 @@ def test_no_hang2():
t2 = Timer(BASE_TIME + 1, sigkill_process, args=(p,))
t1.start()
t2.start()
print("jfjfjfj")
for i in range(BASE_TIME + 2):
sleep(1)
if not p.is_alive():
Expand Down

0 comments on commit fb16f87

Please sign in to comment.