summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-04 00:48:12 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-01-04 00:48:12 +0100
commitf93aae6d2b88aedd49ce4ba2032c7dc074fdac7d (patch)
tree14c8b1ea0edac8f6cc316480c3d0f8c9ae33c00d
parenta85cc81d8ee0bf911d7ba6ff8fbb1a8da7897822 (diff)
downloadtrollius-f93aae6d2b88aedd49ce4ba2032c7dc074fdac7d.tar.gz
Fix test_events.test_subprocess_interactive()
-rw-r--r--tests/test_events.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_events.py b/tests/test_events.py
index 297ac11..5f71078 100644
--- a/tests/test_events.py
+++ b/tests/test_events.py
@@ -1106,8 +1106,7 @@ class SubprocessTestsMixin(object):
self.assertEqual(b'Python The Winner', non_local['proto'].data[1])
def test_subprocess_interactive(self):
- proto = None
- transp = None
+ non_local = {'proto': None, 'transp': None}
prog = os.path.join(os.path.dirname(__file__), 'echo.py')