diff options
Diffstat (limited to 'tests/test_constructor.py')
| -rwxr-xr-x | tests/test_constructor.py | 2 |
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. |
