You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
659 B
19 lines
659 B
11 years ago
|
# HG changeset patch
|
||
|
# User Robert Kuska <rkuska@redhat.com>
|
||
|
# Date 1400489832 -7200
|
||
|
# Node ID 47ff3652b0aed191f7bafc741c211d1415f65224
|
||
|
# Parent 8b3f3a14d53c561f0bae1990dc251d5fde09432e
|
||
|
Remove redudant print statement
|
||
|
|
||
|
diff --git a/testing/test_channel.py b/testing/test_channel.py
|
||
|
--- a/testing/test_channel.py
|
||
|
+++ b/testing/test_channel.py
|
||
|
@@ -72,7 +72,6 @@
|
||
|
channel.receive()
|
||
|
except channel.RemoteError:
|
||
|
e = sys.exc_info()[1]
|
||
|
- print(e)
|
||
|
assert str(e).startswith('Traceback (most recent call last):')
|
||
|
assert str(e).find('NameError') > -1
|
||
|
assert str(e).find('foobar') > -1
|