summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-02-05 13:23:04 +0100
committerVictor Stinner <victor.stinner@gmail.com>2016-02-05 13:23:04 +0100
commit985e789b4c08b8538f15694caf65d32724400aad (patch)
tree71065adaee2482f923c2f35433d87fc0b6236251
parentf7a315a22528a93ba3aa0dcdda5ba8c8001f7836 (diff)
parentb335213a8e0c56c10b8c1de970fa9b1e2b119322 (diff)
downloadtrollius-git-985e789b4c08b8538f15694caf65d32724400aad.tar.gz
Merge pull request #6 from mindw/fix_win32_test
Fix win32 test
-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: