Fix threadpool test premature end on some platforms

This commit is contained in:
shortcutme 2019-12-04 12:47:47 +01:00
parent 1935a69c04
commit c8214bf3ea
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE

View file

@ -16,7 +16,7 @@ class TestThreadPool:
events.append("S")
out = 0
for i in range(10000000):
if i == 5000000:
if i == 1000000:
events.append("M")
out += 1
events.append("D")