We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6a0d5a commit a39a66eCopy full SHA for a39a66e
test/examples/test_hello_world.py
@@ -34,15 +34,15 @@ def test_hello_world():
34
35
if 'RECEIVED' in line:
36
received += 1
37
-
+
38
if sent != 0 and received != 0 and sent * 2 == received:
39
ret = True
40
else:
41
print('ERROR: sent: ' + str(sent) + ', but received: ' + str(received) +
42
' (expected: ' + str(sent * 2) + ')')
43
raise subprocess.CalledProcessError(1, '')
44
45
- except subprocess.CalledProcessError:
+ except subprocess.CalledProcessError as e:
46
print ('ERROR %s', e.output)
47
except subprocess.TimeoutExpired:
48
print('TIMEOUT')
0 commit comments