Skip to content

Commit

Permalink
trying to fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
bbixler500 committed Sep 27, 2023
1 parent 0d5aa73 commit ab11ae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions socs/agents/hwp_supervisor/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,8 +726,8 @@ def __init__(self, agent, args):
temp_field=self.ybco_temp_field,
temp_thresh=args.ybco_temp_thresh,
ups_minutes_remaining_thresh=args.ups_minutes_remaining_thresh,
iboot_outlet1=int(self.iboot_outlet1) - 1,
iboot_outlet2=int(self.iboot_outlet2) - 1,
iboot_outlet1=self.iboot_outlet1 - 1,
iboot_outlet2=self.iboot_outlet2 - 1,
)
self.control_state_machine = ControlStateMachine()
self.forward_is_cw = args.forward_dir == 'cw'
Expand Down

0 comments on commit ab11ae4

Please sign in to comment.