From 3e9751819ad13a965e8be13c1e5bc5a6811fe6b8 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Mon, 11 Dec 2017 10:04:40 -0500 Subject: bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785) --- Lib/test/test_asyncio/test_futures.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Lib/test/test_asyncio/test_futures.py') diff --git a/Lib/test/test_asyncio/test_futures.py b/Lib/test/test_asyncio/test_futures.py index 4320a901f4..444d1df02b 100644 --- a/Lib/test/test_asyncio/test_futures.py +++ b/Lib/test/test_asyncio/test_futures.py @@ -9,12 +9,9 @@ import unittest from unittest import mock import asyncio -from asyncio import test_utils from asyncio import futures -try: - from test import support -except ImportError: - from asyncio import test_support as support +from test.test_asyncio import utils as test_utils +from test import support def _fakefunc(f): -- cgit v1.2.1