summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoah <noah@656d521f-e311-0410-88e0-e7920216d269>2002-09-24 06:35:06 +0000
committernoah <noah@656d521f-e311-0410-88e0-e7920216d269>2002-09-24 06:35:06 +0000
commit5461318ed34519db020159662463d7ba2476fc60 (patch)
tree8b1ea1a8d13bfc7c3bfe781109ec43bb71f438a8
parent6faae77b63fa401464865cbb8a2119db848f2ed5 (diff)
downloadpexpect-5461318ed34519db020159662463d7ba2476fc60.tar.gz
got rid of a debug print statement.
git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@93 656d521f-e311-0410-88e0-e7920216d269
-rwxr-xr-xpexpect/tests/test_constructor.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pexpect/tests/test_constructor.py b/pexpect/tests/test_constructor.py
index a1cf3b6..ddac622 100755
--- a/pexpect/tests/test_constructor.py
+++ b/pexpect/tests/test_constructor.py
@@ -14,8 +14,6 @@ class TestCaseConstructor(unittest.TestCase):
p2 = pexpect.spawn('ls' ,['-l', '/bin'])
p1.expect (pexpect.EOF)
p2.expect (pexpect.EOF)
- print p1.before
- print p2.before
assert (p1.before == p2.before)
def test_named_parameters (self):