summaryrefslogtreecommitdiff
path: root/tests/test_constructor.py
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2014-05-27 03:34:02 +0000
committerjquast <contact@jeffquast.com>2014-05-27 03:34:02 +0000
commite6b716fd1ffb96ad19fd14fffb4c63c5e2b6c0a6 (patch)
treefdb36924f7926743f154ffd6a847e261c058eb28 /tests/test_constructor.py
parentc4359ad421a6d75a4b8859f7fdcb21c568173865 (diff)
downloadpexpect-solaris-experiments.tar.gz
just pushing up all solaris experimentssolaris-experiments
will be re-working a new branch
Diffstat (limited to 'tests/test_constructor.py')
-rwxr-xr-xtests/test_constructor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_constructor.py b/tests/test_constructor.py
index 8a98c28..74e156e 100755
--- a/tests/test_constructor.py
+++ b/tests/test_constructor.py
@@ -33,7 +33,7 @@ class TestCaseConstructor(PexpectTestCase.PexpectTestCase):
p2 = pexpect.spawn('/bin/ls' ,['-l', '/bin'])
p1.expect (pexpect.EOF)
p2.expect (pexpect.EOF)
- assert (p1.before == p2.before)
+ assert (p1.before == p2.before), (p1.before, p2.before)
def test_named_parameters (self):
'''This tests that named parameters work.