summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--tests/test_subprocess.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 16fae2b..4f2b074 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,4 +15,5 @@ dist
*.egg-info
.tox
.idea/
-*.iml \ No newline at end of file
+*.iml
+trollius/_overlapped.pyd
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: