aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_asyncio/test_pep492.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_asyncio/test_pep492.py')
-rw-r--r--Lib/test/test_asyncio/test_pep492.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/Lib/test/test_asyncio/test_pep492.py b/Lib/test/test_asyncio/test_pep492.py
index 442577017d9..8dd0c25e7cf 100644
--- a/Lib/test/test_asyncio/test_pep492.py
+++ b/Lib/test/test_asyncio/test_pep492.py
@@ -3,14 +3,11 @@
import types
import unittest
-try:
- from test import support
-except ImportError:
- from asyncio import test_support as support
+from test import support
from unittest import mock
import asyncio
-from asyncio import test_utils
+from test.test_asyncio import utils as test_utils
class BaseTest(test_utils.TestCase):