aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/integration-tests')
-rw-r--r--src/integration-tests/gnunet_testing.py.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/integration-tests/gnunet_testing.py.in b/src/integration-tests/gnunet_testing.py.in
index 7f8c97637..41e709f8c 100644
--- a/src/integration-tests/gnunet_testing.py.in
+++ b/src/integration-tests/gnunet_testing.py.in
@@ -51,7 +51,10 @@ class Check:
51 time.sleep(1) 51 time.sleep(1)
52 execs += 1 52 execs += 1
53 if ((False == res) and (execs >= timeout)): 53 if ((False == res) and (execs >= timeout)):
54 print ('Check had timeout after ' +str(timeout)+ 'seconds') 54 print ('Check had timeout after ' +str(timeout)+ ' seconds')
55 neg_cont (self)
56 elif ((False == res) and (execs >= timeout)):
57 neg_cont (self)
55 else: 58 else:
56 pos_cont (self) 59 pos_cont (self)
57 return res 60 return res