summaryrefslogtreecommitdiff
path: root/tests/semaphore_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/semaphore_test.py')
-rw-r--r--tests/semaphore_test.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/semaphore_test.py b/tests/semaphore_test.py
index 53a81f0..daf83f6 100644
--- a/tests/semaphore_test.py
+++ b/tests/semaphore_test.py
@@ -1,5 +1,4 @@
import time
-import unittest
import eventlet
from eventlet import semaphore
@@ -62,7 +61,3 @@ def test_semaphore_contention():
t2.kill()
assert abs(counts[0] - counts[1]) < int(min(counts) * 0.1), counts
-
-
-if __name__ == '__main__':
- unittest.main()