Commit 26fa03854e588a6c547c40601076d08270f8e483

Authored by Etienne Pallier
1 parent 34cf6303
Exists in dev

suppression debug

Showing 1 changed file with 6 additions and 5 deletions   Show diff stats
src/core/pyros_django/agent/Agent.py
... ... @@ -2281,15 +2281,16 @@ class Agent:
2281 2281 if not self.is_in_test_mode(): return
2282 2282 if not cmd: return
2283 2283  
2284   - print("*** CHECK ***")
  2284 + #print("*** CHECK ***")
2285 2285 #if hasattr(self._cmdts,'expected_res'):
2286   - print(cmd.result)
2287   - print(self._cmdts.expected_res)
  2286 +
  2287 + #print(cmd.result)
  2288 + #print(self._cmdts.expected_res)
2288 2289 if cmd.is_executed() and self._cmdts.expected_res:
2289 2290 assert(cmd.result == self._cmdts.expected_res)
2290 2291  
2291   - print(cmd.state)
2292   - print(self._cmdts.expected_status)
  2292 + #print(cmd.state)
  2293 + #print(self._cmdts.expected_status)
2293 2294 #if hasattr(self._cmdts,'expected_status'):
2294 2295 if self._cmdts.expected_status:
2295 2296 assert(cmd.state == self._cmdts.expected_status)
... ...