From 056a39469ae441d54743aae79c9e5b1c348305ad Mon Sep 17 00:00:00 2001 From: Gabi Davar Date: Fri, 13 Nov 2015 13:31:14 +0200 Subject: fix test on py2 win32 --- tests/test_subprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_subprocess.py b/tests/test_subprocess.py index 21e003a..63288ce 100644 --- a/tests/test_subprocess.py +++ b/tests/test_subprocess.py @@ -432,7 +432,7 @@ class SubprocessMixin: # Issue #24763: check that the subprocess transport is closed # when BaseSubprocessTransport fails if sys.platform == 'win32': - target = 'asyncio.windows_utils.Popen' + target = 'trollius.windows_utils.Popen' else: target = 'subprocess.Popen' with mock.patch(target) as popen: -- cgit v1.2.1