Commit 19f7f218e08e80a4240dfeb4340798cb413dc48a

Authored by Etienne Pallier
1 parent a5b62580
Exists in dev

update agentSST for TEST_MODE

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/core/pyros_django/agent/AgentSST.py
@@ -37,7 +37,7 @@ class AgentSST(Agent): @@ -37,7 +37,7 @@ class AgentSST(Agent):
37 37
38 _TEST_COMMANDS_LIST = [ 38 _TEST_COMMANDS_LIST = [
39 (True, "self get_mode", 200, "ATTENTIVE", Agent.CMD_STATUS.CMD_EXECUTED), 39 (True, "self get_mode", 200, "ATTENTIVE", Agent.CMD_STATUS.CMD_EXECUTED),
40 - (True, "self set_mode ATTENTIVE", 200, "ATTENTIVE", Agent.CMD_STATUS.CMD_EXECUTED), 40 + (True, "self set_mode ATTENTIVE", 200, "MODE is ATTENTIVE", Agent.CMD_STATUS.CMD_EXECUTED),
41 (True, "self do_stop", 200, None, Agent.CMD_STATUS.CMD_EXECUTED), 41 (True, "self do_stop", 200, None, Agent.CMD_STATUS.CMD_EXECUTED),
42 ] 42 ]
43 43