aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests/gnunet_testing.py.in
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2011-12-19 17:10:31 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2011-12-19 17:10:31 +0000
commitb10b45c398e1da19723c368d6ddd3641e2a97a79 (patch)
treeffd27da252792b30db4f601b4a1cb78e3d11c278 /src/integration-tests/gnunet_testing.py.in
parent2088429445cccbb5b5ac8d696e5544853bb60396 (diff)
downloadgnunet-b10b45c398e1da19723c368d6ddd3641e2a97a79.tar.gz
gnunet-b10b45c398e1da19723c368d6ddd3641e2a97a79.zip
a new nat disconnect test
Diffstat (limited to 'src/integration-tests/gnunet_testing.py.in')
-rw-r--r--src/integration-tests/gnunet_testing.py.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/integration-tests/gnunet_testing.py.in b/src/integration-tests/gnunet_testing.py.in
index cb3dc541f..9d4a32877 100644
--- a/src/integration-tests/gnunet_testing.py.in
+++ b/src/integration-tests/gnunet_testing.py.in
@@ -136,9 +136,9 @@ class StatisticsCondition (Condition):
136 fail = "" 136 fail = ""
137 op = " == " 137 op = " == "
138 if ((self.fulfilled == False) and (failed_only == True)): 138 if ((self.fulfilled == False) and (failed_only == True)):
139 print self.peer.cfg + " " + str(self.type) + ' condition in subsystem "' + self.subsystem.ljust(12) +'" : "' + self.name.ljust(30) +'" : ' + str(self.value) + op + res + fail 139 print self.peer.cfg + " " + str(self.type) + ' condition in subsystem "' + self.subsystem.ljust(12) +'" : "' + self.name.ljust(30) +'" : (expected/real value) ' + str(self.value) + op + res + fail
140 elif (failed_only == False): 140 elif (failed_only == False):
141 print self.peer.cfg + " " + str(self.type) + ' condition in subsystem "' + self.subsystem.ljust(12) +'" : "' + self.name.ljust(30) +'" : ' + str(self.value) + op + res + fail 141 print self.peer.cfg + " " + str(self.type) + ' condition in subsystem "' + self.subsystem.ljust(12) +'" : "' + self.name.ljust(30) +'" : (expected/real value) ' + str(self.value) + op + res + fail
142 return self.fulfilled 142 return self.fulfilled
143 143
144class Test: 144class Test: