summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-10-13 03:29:54 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-10-13 03:29:54 (GMT)
commit4052fe5a9bb5de0e142f138c00a263d2fe44f552 (patch)
tree2171ed07cbbbd4f078a96acbff9b51de4bca4a7d /Lib
parent876c43245ea0a42090636222c02ccf359e4f5aa8 (diff)
downloadcpython-4052fe5a9bb5de0e142f138c00a263d2fe44f552.zip
cpython-4052fe5a9bb5de0e142f138c00a263d2fe44f552.tar.gz
cpython-4052fe5a9bb5de0e142f138c00a263d2fe44f552.tar.bz2
test_stdout_none(): Don't print "banana" to the screen in the middle
of the test. It's testing stdout in a different process, so it has to print something, but I didn't find "banana" to be self-explanatory.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_subprocess.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index a11183b..6f498b8 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -56,8 +56,11 @@ class ProcessTestCase(unittest.TestCase):
def test_stdout_none(self):
# .stdout is None when not redirected
- p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
- stdin=subprocess.PIPE, stderr=subprocess.PIPE)
+ p = subprocess.Popen([sys.executable, "-c",
+ 'print " this bit of output is from a '
+ 'test of stdout in a different '
+ 'process ..."'],
+ stdin=subprocess.PIPE, stderr=subprocess.PIPE)
p.wait()
self.assertEqual(p.stdout, None)