summaryrefslogtreecommitdiff
path: root/tests/test_concurrency.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r--tests/test_concurrency.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py
index 54e50014..fa482f91 100644
--- a/tests/test_concurrency.py
+++ b/tests/test_concurrency.py
@@ -146,13 +146,7 @@ PRINT_SUM_RANGE = """
"""
# Import the things to use threads.
-if env.PY2:
- THREAD = """
- import threading
- import Queue as queue
- """
-else:
- THREAD = """
+THREAD = """
import threading
import queue
"""